aboutsummaryrefslogtreecommitdiffstats
path: root/Demos
diff options
context:
space:
mode:
authorDean Camera <dean@fourwalledcubicle.com>2009-06-15 04:38:42 +0000
committerDean Camera <dean@fourwalledcubicle.com>2009-06-15 04:38:42 +0000
commitb7049da11b6fe3c37b23d8f7dddfff08ba14f449 (patch)
tree0cb3b12bf41561fe31dfc8472012ae69a1d105c2 /Demos
parentafe6ae14023c7040befe73e49d00077d3425c564 (diff)
downloadlufa-b7049da11b6fe3c37b23d8f7dddfff08ba14f449.tar.gz
lufa-b7049da11b6fe3c37b23d8f7dddfff08ba14f449.tar.bz2
lufa-b7049da11b6fe3c37b23d8f7dddfff08ba14f449.zip
Enhanced class drivers to use the same public/private section seperations as other portions of the library.
Diffstat (limited to 'Demos')
-rw-r--r--Demos/Host/ClassDriver/CDCHost/CDCHost.c6
1 files changed, 6 insertions, 0 deletions
diff --git a/Demos/Host/ClassDriver/CDCHost/CDCHost.c b/Demos/Host/ClassDriver/CDCHost/CDCHost.c
index 9a9d8a71f..e50a28f95 100644
--- a/Demos/Host/ClassDriver/CDCHost/CDCHost.c
+++ b/Demos/Host/ClassDriver/CDCHost/CDCHost.c
@@ -36,6 +36,12 @@
#include "CDCHost.h"
+/** LUFA CDC Class driver interface configuration and state information. This structure is
+ * passed to all CDC Class driver functions, so that multiple instances of the same class
+ * within a device can be differentiated from one another.
+ */
+USB_ClassInfo_CDC_t VirtualSerial_CDC_Interface;
+
/** Main program entry point. This routine configures the hardware required by the application, then
* starts the scheduler to run the application tasks.
*/