diff options
| author | Dean <Dean@d5102386-fcda-11dd-9fdb-3debd5008f28> | 2009-06-19 03:21:03 +0000 |
|---|---|---|
| committer | Dean <Dean@d5102386-fcda-11dd-9fdb-3debd5008f28> | 2009-06-19 03:21:03 +0000 |
| commit | da4d513dd9a19b818c073f6106915f30e2fb7dd8 (patch) | |
| tree | 58a78dc0caeb6e2b4d84f315c4c024d910b394df /Demos/Host | |
| parent | 6b0849243e44d202b6966b815610cb57684a79ef (diff) | |
Re-add in simple scheduler for compatibility with legacy code, mark all scheduler related files as deprecated.
git-svn-id: http://lufa-lib.googlecode.com/svn/trunk@613 d5102386-fcda-11dd-9fdb-3debd5008f28
Diffstat (limited to 'Demos/Host')
| -rw-r--r-- | Demos/Host/ClassDriver/CDCHost/CDCHost.c | 14 |
1 files changed, 11 insertions, 3 deletions
diff --git a/Demos/Host/ClassDriver/CDCHost/CDCHost.c b/Demos/Host/ClassDriver/CDCHost/CDCHost.c index 941cf7cc..96b4b43f 100644 --- a/Demos/Host/ClassDriver/CDCHost/CDCHost.c +++ b/Demos/Host/ClassDriver/CDCHost/CDCHost.c @@ -42,9 +42,17 @@ */
USB_ClassInfo_CDC_Host_t VirtualSerial_CDC_Interface =
{
- .DataINPipeNumber = 1,
- .DataOUTPipeNumber = 2,
- .NotificationPipeNumber = 3,
+ .Config =
+ {
+ .DataINPipeNumber = 1,
+ .DataOUTPipeNumber = 2,
+ .NotificationPipeNumber = 3,
+ },
+
+ .State =
+ {
+ // Leave all state values to their defaults
+ }
};
/** Main program entry point. This routine configures the hardware required by the application, then
|
