Fix newly renamed VirtualSerial demos' include filename references so that they compile.
authorDean Camera <dean@fourwalledcubicle.com>
Mon, 7 Dec 2009 04:49:37 +0000 (04:49 +0000)
committerDean Camera <dean@fourwalledcubicle.com>
Mon, 7 Dec 2009 04:49:37 +0000 (04:49 +0000)
15 files changed:
Demos/Device/ClassDriver/DualVirtualSerial/DualVirtualSerial.c
Demos/Device/ClassDriver/DualVirtualSerial/DualVirtualSerial.h
Demos/Device/ClassDriver/VirtualSerial/VirtualSerial.c
Demos/Device/ClassDriver/VirtualSerial/VirtualSerial.h
Demos/Device/ClassDriver/VirtualSerialMouse/VirtualSerialMouse.c
Demos/Device/ClassDriver/VirtualSerialMouse/VirtualSerialMouse.h
Demos/Device/LowLevel/DualVirtualSerial/DualVirtualSerial.c
Demos/Device/LowLevel/DualVirtualSerial/DualVirtualSerial.h
Demos/Device/LowLevel/VirtualSerial/VirtualSerial.c
Demos/Device/LowLevel/VirtualSerial/VirtualSerial.h
Demos/Host/ClassDriver/VirtualSerialHost/VirtualSerialHost.c
Demos/Host/ClassDriver/VirtualSerialHost/VirtualSerialHost.h
Demos/Host/LowLevel/VirtualSerialHost/ConfigDescriptor.h
Demos/Host/LowLevel/VirtualSerialHost/VirtualSerialHost.c
Demos/Host/LowLevel/VirtualSerialHost/VirtualSerialHost.h

index 000d18b..4765af4 100644 (file)
 \r
 /** \file\r
  *\r
 \r
 /** \file\r
  *\r
- *  Main source file for the DualCDC demo. This file contains the main tasks of\r
+ *  Main source file for the DualVirtualSerial demo. This file contains the main tasks of\r
  *  the demo and is responsible for the initial application hardware configuration.\r
  */\r
 \r
  *  the demo and is responsible for the initial application hardware configuration.\r
  */\r
 \r
-#include "DualCDC.h"\r
+#include "DualVirtualSerial.h"\r
 \r
 /** LUFA CDC Class driver interface configuration and state information. This structure is\r
  *  passed to all CDC Class driver functions, so that multiple instances of the same class\r
 \r
 /** LUFA CDC Class driver interface configuration and state information. This structure is\r
  *  passed to all CDC Class driver functions, so that multiple instances of the same class\r
index 2f12aca..ab406f9 100644 (file)
 \r
 /** \file\r
  *\r
 \r
 /** \file\r
  *\r
- *  Header file for DualCDC.c.\r
+ *  Header file for DualVirtualSerial.c.\r
  */\r
 \r
  */\r
 \r
-#ifndef _DUAL_CDC_H_\r
-#define _DUAL_CDC_H_\r
+#ifndef _DUAL_VIRTUALSERIAL_H_\r
+#define _DUAL_VIRTUALSERIAL_H_\r
 \r
        /* Includes: */\r
                #include <avr/io.h>\r
 \r
        /* Includes: */\r
                #include <avr/io.h>\r
index 8940ae0..41bf52d 100644 (file)
 \r
 /** \file\r
  *\r
 \r
 /** \file\r
  *\r
- *  Main source file for the CDC demo. This file contains the main tasks of\r
+ *  Main source file for the VirtualSerial demo. This file contains the main tasks of\r
  *  the demo and is responsible for the initial application hardware configuration.\r
  */\r
  \r
  *  the demo and is responsible for the initial application hardware configuration.\r
  */\r
  \r
-#include "CDC.h"\r
+#include "VirtualSerial.h"\r
 \r
 /** LUFA CDC Class driver interface configuration and state information. This structure is\r
  *  passed to all CDC Class driver functions, so that multiple instances of the same class\r
 \r
 /** LUFA CDC Class driver interface configuration and state information. This structure is\r
  *  passed to all CDC Class driver functions, so that multiple instances of the same class\r
index 9cc7248..3ffb897 100644 (file)
 \r
 /** \file\r
  *\r
 \r
 /** \file\r
  *\r
- *  Header file for CDC.c.\r
+ *  Header file for VirtualSerial.c.\r
  */\r
 \r
  */\r
 \r
-#ifndef _CDC_H_\r
-#define _CDC_H_\r
+#ifndef _VIRTUALSERIAL_H_\r
+#define _VIRTUALSERIAL_H_\r
 \r
        /* Includes: */\r
                #include <avr/io.h>\r
 \r
        /* Includes: */\r
                #include <avr/io.h>\r
index d979e66..2c7c955 100644 (file)
 \r
 /** \file\r
  *\r
 \r
 /** \file\r
  *\r
- *  Main source file for the CDCMouse demo. This file contains the main tasks of\r
+ *  Main source file for the VirtualSerialMouse demo. This file contains the main tasks of\r
  *  the demo and is responsible for the initial application hardware configuration.\r
  */\r
  \r
  *  the demo and is responsible for the initial application hardware configuration.\r
  */\r
  \r
-#include "CDCMouse.h"\r
+#include "VirtualSerialMouse.h"\r
 \r
 /** LUFA CDC Class driver interface configuration and state information. This structure is\r
  *  passed to all CDC Class driver functions, so that multiple instances of the same class\r
 \r
 /** LUFA CDC Class driver interface configuration and state information. This structure is\r
  *  passed to all CDC Class driver functions, so that multiple instances of the same class\r
index bee1b04..79cacce 100644 (file)
 \r
 /** \file\r
  *\r
 \r
 /** \file\r
  *\r
- *  Header file for CDCMouse.c.\r
+ *  Header file for VirtualSerialMouse.c.\r
  */\r
 \r
  */\r
 \r
-#ifndef _CDC_MOUSE_H_\r
-#define _CDC_MOUSE_H_\r
+#ifndef _VIRTUALSERIAL_MOUSE_H_\r
+#define _VIRTUALSERIAL_MOUSE_H_\r
 \r
        /* Includes: */\r
                #include <avr/io.h>\r
 \r
        /* Includes: */\r
                #include <avr/io.h>\r
index 8b1da03..2993b90 100644 (file)
 \r
 /** \file\r
  *\r
 \r
 /** \file\r
  *\r
- *  Main source file for the DualCDC demo. This file contains the main tasks of the demo and\r
+ *  Main source file for the DualVirtualSerial demo. This file contains the main tasks of the demo and\r
  *  is responsible for the initial application hardware configuration.\r
  */\r
  \r
  *  is responsible for the initial application hardware configuration.\r
  */\r
  \r
-#include "DualCDC.h"\r
+#include "DualVirtualSerial.h"\r
 \r
 /** Contains the current baud rate and other settings of the first virtual serial port. While this demo does not use\r
  *  the physical USART and thus does not use these settings, they must still be retained and returned to the host\r
 \r
 /** Contains the current baud rate and other settings of the first virtual serial port. While this demo does not use\r
  *  the physical USART and thus does not use these settings, they must still be retained and returned to the host\r
index b2085c4..55ab6b2 100644 (file)
 \r
 /** \file\r
  *\r
 \r
 /** \file\r
  *\r
- *  Header file for DualCDC.c.\r
+ *  Header file for DualVirtualSerial.c.\r
  */\r
 \r
  */\r
 \r
-#ifndef _DUAL_CDC_H_\r
-#define _DUAL_CDC_H_\r
+#ifndef _DUAL_VIRTUALSERIAL_H_\r
+#define _DUAL_VIRTUALSERIAL_H_\r
 \r
        /* Includes: */\r
                #include <avr/io.h>\r
 \r
        /* Includes: */\r
                #include <avr/io.h>\r
index 444dc01..89413a4 100644 (file)
 \r
 /** \file\r
  *\r
 \r
 /** \file\r
  *\r
- *  Main source file for the CDC demo. This file contains the main tasks of the demo and\r
+ *  Main source file for the VirtualSerial demo. This file contains the main tasks of the demo and\r
  *  is responsible for the initial application hardware configuration.\r
  */\r
 \r
  *  is responsible for the initial application hardware configuration.\r
  */\r
 \r
-#include "CDC.h"\r
+#include "VirtualSerial.h"\r
 \r
 /** Contains the current baud rate and other settings of the virtual serial port. While this demo does not use\r
  *  the physical USART and thus does not use these settings, they must still be retained and returned to the host\r
 \r
 /** Contains the current baud rate and other settings of the virtual serial port. While this demo does not use\r
  *  the physical USART and thus does not use these settings, they must still be retained and returned to the host\r
index 4a7b6b1..d8abc12 100644 (file)
 \r
 /** \file\r
  *\r
 \r
 /** \file\r
  *\r
- *  Header file for CDC.c.\r
+ *  Header file for VirtualSerial.c.\r
  */\r
 \r
  */\r
 \r
-#ifndef _CDC_H_\r
-#define _CDC_H_\r
+#ifndef _VIRTUALSERIAL_H_\r
+#define _VIRTUALSERIAL_H_\r
 \r
        /* Includes: */\r
                #include <avr/io.h>\r
 \r
        /* Includes: */\r
                #include <avr/io.h>\r
index 4b08f7d..b3c1143 100644 (file)
 \r
 /** \file\r
  *\r
 \r
 /** \file\r
  *\r
- *  Main source file for the CDCHost demo. This file contains the main tasks of\r
+ *  Main source file for the VirtualSerialHost demo. This file contains the main tasks of\r
  *  the demo and is responsible for the initial application hardware configuration.\r
  */\r
  \r
  *  the demo and is responsible for the initial application hardware configuration.\r
  */\r
  \r
-#include "CDCHost.h"\r
+#include "VirtualSerialHost.h"\r
 \r
 /** LUFA CDC Class driver interface configuration and state information. This structure is\r
  *  passed to all CDC Class driver functions, so that multiple instances of the same class\r
 \r
 /** LUFA CDC Class driver interface configuration and state information. This structure is\r
  *  passed to all CDC Class driver functions, so that multiple instances of the same class\r
index d666b73..dbd85a1 100644 (file)
 \r
 /** \file\r
  *\r
 \r
 /** \file\r
  *\r
- *  Header file for CDCHost.c.\r
+ *  Header file for VirtualSerialHost.c.\r
  */\r
 \r
  */\r
 \r
-#ifndef _CDC_HOST_H_\r
-#define _CDC_HOST_H_\r
+#ifndef _VIRTUALSERIAL_HOST_H_\r
+#define _VIRTUALSERIAL_HOST_H_\r
 \r
        /* Includes: */\r
                #include <avr/io.h>\r
 \r
        /* Includes: */\r
                #include <avr/io.h>\r
index 17aa831..3a2b2b4 100644 (file)
@@ -37,9 +37,9 @@
 #define _CONFIGDESCRIPTOR_H_\r
 \r
        /* Includes: */\r
 #define _CONFIGDESCRIPTOR_H_\r
 \r
        /* Includes: */\r
-               #include <LUFA/Drivers/USB/USB.h>                        // USB Functionality\r
+               #include <LUFA/Drivers/USB/USB.h>\r
                \r
                \r
-               #include "CDCHost.h"\r
+               #include "VirtualSerialHost.h"\r
                \r
        /* Macros: */\r
                /** Interface Class value for the CDC class */\r
                \r
        /* Macros: */\r
                /** Interface Class value for the CDC class */\r
index c432258..3aaaef3 100644 (file)
 \r
 /** \file\r
  *\r
 \r
 /** \file\r
  *\r
- *  Main source file for the CDCHost demo. This file contains the main tasks of\r
+ *  Main source file for the VirtualSerialHost demo. This file contains the main tasks of\r
  *  the demo and is responsible for the initial application hardware configuration.\r
  */\r
  \r
  *  the demo and is responsible for the initial application hardware configuration.\r
  */\r
  \r
-#include "CDCHost.h"\r
+#include "VirtualSerialHost.h"\r
 \r
 #if 0\r
 /* NOTE: Here you can set up a standard stream using the created virtual serial port, so that the standard stream functions in\r
 \r
 #if 0\r
 /* NOTE: Here you can set up a standard stream using the created virtual serial port, so that the standard stream functions in\r
index b6d3a3c..679fd99 100644 (file)
 \r
 /** \file\r
  *\r
 \r
 /** \file\r
  *\r
- *  Header file for CDCHost.c.\r
+ *  Header file for VirtualSerialHost.c.\r
  */\r
 \r
  */\r
 \r
-#ifndef _CDC_HOST_H_\r
-#define _CDC_HOST_H_\r
+#ifndef _VIRTUALSERIAL_HOST_H_\r
+#define _VIRTUALSERIAL_HOST_H_\r
 \r
        /* Includes: */\r
                #include <avr/io.h>\r
 \r
        /* Includes: */\r
                #include <avr/io.h>\r