From 3757b1760fdd197a8c7227bbfd0b11ee33eb99e6 Mon Sep 17 00:00:00 2001 From: Dean Camera Date: Mon, 7 Dec 2009 04:49:37 +0000 Subject: [PATCH] Fix newly renamed VirtualSerial demos' include filename references so that they compile. --- .../ClassDriver/DualVirtualSerial/DualVirtualSerial.c | 4 ++-- .../ClassDriver/DualVirtualSerial/DualVirtualSerial.h | 6 +++--- Demos/Device/ClassDriver/VirtualSerial/VirtualSerial.c | 4 ++-- Demos/Device/ClassDriver/VirtualSerial/VirtualSerial.h | 6 +++--- .../ClassDriver/VirtualSerialMouse/VirtualSerialMouse.c | 4 ++-- .../ClassDriver/VirtualSerialMouse/VirtualSerialMouse.h | 6 +++--- Demos/Device/LowLevel/DualVirtualSerial/DualVirtualSerial.c | 4 ++-- Demos/Device/LowLevel/DualVirtualSerial/DualVirtualSerial.h | 6 +++--- Demos/Device/LowLevel/VirtualSerial/VirtualSerial.c | 4 ++-- Demos/Device/LowLevel/VirtualSerial/VirtualSerial.h | 6 +++--- .../Host/ClassDriver/VirtualSerialHost/VirtualSerialHost.c | 4 ++-- .../Host/ClassDriver/VirtualSerialHost/VirtualSerialHost.h | 6 +++--- Demos/Host/LowLevel/VirtualSerialHost/ConfigDescriptor.h | 4 ++-- Demos/Host/LowLevel/VirtualSerialHost/VirtualSerialHost.c | 4 ++-- Demos/Host/LowLevel/VirtualSerialHost/VirtualSerialHost.h | 6 +++--- 15 files changed, 37 insertions(+), 37 deletions(-) diff --git a/Demos/Device/ClassDriver/DualVirtualSerial/DualVirtualSerial.c b/Demos/Device/ClassDriver/DualVirtualSerial/DualVirtualSerial.c index 000d18b9af..4765af4b23 100644 --- a/Demos/Device/ClassDriver/DualVirtualSerial/DualVirtualSerial.c +++ b/Demos/Device/ClassDriver/DualVirtualSerial/DualVirtualSerial.c @@ -30,11 +30,11 @@ /** \file * - * Main source file for the DualCDC demo. This file contains the main tasks of + * Main source file for the DualVirtualSerial demo. This file contains the main tasks of * the demo and is responsible for the initial application hardware configuration. */ -#include "DualCDC.h" +#include "DualVirtualSerial.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 diff --git a/Demos/Device/ClassDriver/DualVirtualSerial/DualVirtualSerial.h b/Demos/Device/ClassDriver/DualVirtualSerial/DualVirtualSerial.h index 2f12aca88e..ab406f99fa 100644 --- a/Demos/Device/ClassDriver/DualVirtualSerial/DualVirtualSerial.h +++ b/Demos/Device/ClassDriver/DualVirtualSerial/DualVirtualSerial.h @@ -30,11 +30,11 @@ /** \file * - * Header file for DualCDC.c. + * Header file for DualVirtualSerial.c. */ -#ifndef _DUAL_CDC_H_ -#define _DUAL_CDC_H_ +#ifndef _DUAL_VIRTUALSERIAL_H_ +#define _DUAL_VIRTUALSERIAL_H_ /* Includes: */ #include diff --git a/Demos/Device/ClassDriver/VirtualSerial/VirtualSerial.c b/Demos/Device/ClassDriver/VirtualSerial/VirtualSerial.c index 8940ae0428..41bf52df1b 100644 --- a/Demos/Device/ClassDriver/VirtualSerial/VirtualSerial.c +++ b/Demos/Device/ClassDriver/VirtualSerial/VirtualSerial.c @@ -30,11 +30,11 @@ /** \file * - * Main source file for the CDC demo. This file contains the main tasks of + * Main source file for the VirtualSerial demo. This file contains the main tasks of * the demo and is responsible for the initial application hardware configuration. */ -#include "CDC.h" +#include "VirtualSerial.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 diff --git a/Demos/Device/ClassDriver/VirtualSerial/VirtualSerial.h b/Demos/Device/ClassDriver/VirtualSerial/VirtualSerial.h index 9cc72487c2..3ffb897b17 100644 --- a/Demos/Device/ClassDriver/VirtualSerial/VirtualSerial.h +++ b/Demos/Device/ClassDriver/VirtualSerial/VirtualSerial.h @@ -30,11 +30,11 @@ /** \file * - * Header file for CDC.c. + * Header file for VirtualSerial.c. */ -#ifndef _CDC_H_ -#define _CDC_H_ +#ifndef _VIRTUALSERIAL_H_ +#define _VIRTUALSERIAL_H_ /* Includes: */ #include diff --git a/Demos/Device/ClassDriver/VirtualSerialMouse/VirtualSerialMouse.c b/Demos/Device/ClassDriver/VirtualSerialMouse/VirtualSerialMouse.c index d979e665c2..2c7c955204 100644 --- a/Demos/Device/ClassDriver/VirtualSerialMouse/VirtualSerialMouse.c +++ b/Demos/Device/ClassDriver/VirtualSerialMouse/VirtualSerialMouse.c @@ -30,11 +30,11 @@ /** \file * - * Main source file for the CDCMouse demo. This file contains the main tasks of + * Main source file for the VirtualSerialMouse demo. This file contains the main tasks of * the demo and is responsible for the initial application hardware configuration. */ -#include "CDCMouse.h" +#include "VirtualSerialMouse.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 diff --git a/Demos/Device/ClassDriver/VirtualSerialMouse/VirtualSerialMouse.h b/Demos/Device/ClassDriver/VirtualSerialMouse/VirtualSerialMouse.h index bee1b04350..79cacce78a 100644 --- a/Demos/Device/ClassDriver/VirtualSerialMouse/VirtualSerialMouse.h +++ b/Demos/Device/ClassDriver/VirtualSerialMouse/VirtualSerialMouse.h @@ -30,11 +30,11 @@ /** \file * - * Header file for CDCMouse.c. + * Header file for VirtualSerialMouse.c. */ -#ifndef _CDC_MOUSE_H_ -#define _CDC_MOUSE_H_ +#ifndef _VIRTUALSERIAL_MOUSE_H_ +#define _VIRTUALSERIAL_MOUSE_H_ /* Includes: */ #include diff --git a/Demos/Device/LowLevel/DualVirtualSerial/DualVirtualSerial.c b/Demos/Device/LowLevel/DualVirtualSerial/DualVirtualSerial.c index 8b1da03486..2993b90cae 100644 --- a/Demos/Device/LowLevel/DualVirtualSerial/DualVirtualSerial.c +++ b/Demos/Device/LowLevel/DualVirtualSerial/DualVirtualSerial.c @@ -30,11 +30,11 @@ /** \file * - * Main source file for the DualCDC demo. This file contains the main tasks of the demo and + * Main source file for the DualVirtualSerial demo. This file contains the main tasks of the demo and * is responsible for the initial application hardware configuration. */ -#include "DualCDC.h" +#include "DualVirtualSerial.h" /** Contains the current baud rate and other settings of the first virtual serial port. While this demo does not use * the physical USART and thus does not use these settings, they must still be retained and returned to the host diff --git a/Demos/Device/LowLevel/DualVirtualSerial/DualVirtualSerial.h b/Demos/Device/LowLevel/DualVirtualSerial/DualVirtualSerial.h index b2085c452b..55ab6b2147 100644 --- a/Demos/Device/LowLevel/DualVirtualSerial/DualVirtualSerial.h +++ b/Demos/Device/LowLevel/DualVirtualSerial/DualVirtualSerial.h @@ -30,11 +30,11 @@ /** \file * - * Header file for DualCDC.c. + * Header file for DualVirtualSerial.c. */ -#ifndef _DUAL_CDC_H_ -#define _DUAL_CDC_H_ +#ifndef _DUAL_VIRTUALSERIAL_H_ +#define _DUAL_VIRTUALSERIAL_H_ /* Includes: */ #include diff --git a/Demos/Device/LowLevel/VirtualSerial/VirtualSerial.c b/Demos/Device/LowLevel/VirtualSerial/VirtualSerial.c index 444dc019d8..89413a41ad 100644 --- a/Demos/Device/LowLevel/VirtualSerial/VirtualSerial.c +++ b/Demos/Device/LowLevel/VirtualSerial/VirtualSerial.c @@ -30,11 +30,11 @@ /** \file * - * Main source file for the CDC demo. This file contains the main tasks of the demo and + * Main source file for the VirtualSerial demo. This file contains the main tasks of the demo and * is responsible for the initial application hardware configuration. */ -#include "CDC.h" +#include "VirtualSerial.h" /** Contains the current baud rate and other settings of the virtual serial port. While this demo does not use * the physical USART and thus does not use these settings, they must still be retained and returned to the host diff --git a/Demos/Device/LowLevel/VirtualSerial/VirtualSerial.h b/Demos/Device/LowLevel/VirtualSerial/VirtualSerial.h index 4a7b6b1586..d8abc12076 100644 --- a/Demos/Device/LowLevel/VirtualSerial/VirtualSerial.h +++ b/Demos/Device/LowLevel/VirtualSerial/VirtualSerial.h @@ -30,11 +30,11 @@ /** \file * - * Header file for CDC.c. + * Header file for VirtualSerial.c. */ -#ifndef _CDC_H_ -#define _CDC_H_ +#ifndef _VIRTUALSERIAL_H_ +#define _VIRTUALSERIAL_H_ /* Includes: */ #include diff --git a/Demos/Host/ClassDriver/VirtualSerialHost/VirtualSerialHost.c b/Demos/Host/ClassDriver/VirtualSerialHost/VirtualSerialHost.c index 4b08f7d57c..b3c114313b 100644 --- a/Demos/Host/ClassDriver/VirtualSerialHost/VirtualSerialHost.c +++ b/Demos/Host/ClassDriver/VirtualSerialHost/VirtualSerialHost.c @@ -30,11 +30,11 @@ /** \file * - * Main source file for the CDCHost demo. This file contains the main tasks of + * Main source file for the VirtualSerialHost demo. This file contains the main tasks of * the demo and is responsible for the initial application hardware configuration. */ -#include "CDCHost.h" +#include "VirtualSerialHost.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 diff --git a/Demos/Host/ClassDriver/VirtualSerialHost/VirtualSerialHost.h b/Demos/Host/ClassDriver/VirtualSerialHost/VirtualSerialHost.h index d666b73d64..dbd85a1d07 100644 --- a/Demos/Host/ClassDriver/VirtualSerialHost/VirtualSerialHost.h +++ b/Demos/Host/ClassDriver/VirtualSerialHost/VirtualSerialHost.h @@ -30,11 +30,11 @@ /** \file * - * Header file for CDCHost.c. + * Header file for VirtualSerialHost.c. */ -#ifndef _CDC_HOST_H_ -#define _CDC_HOST_H_ +#ifndef _VIRTUALSERIAL_HOST_H_ +#define _VIRTUALSERIAL_HOST_H_ /* Includes: */ #include diff --git a/Demos/Host/LowLevel/VirtualSerialHost/ConfigDescriptor.h b/Demos/Host/LowLevel/VirtualSerialHost/ConfigDescriptor.h index 17aa831820..3a2b2b4446 100644 --- a/Demos/Host/LowLevel/VirtualSerialHost/ConfigDescriptor.h +++ b/Demos/Host/LowLevel/VirtualSerialHost/ConfigDescriptor.h @@ -37,9 +37,9 @@ #define _CONFIGDESCRIPTOR_H_ /* Includes: */ - #include // USB Functionality + #include - #include "CDCHost.h" + #include "VirtualSerialHost.h" /* Macros: */ /** Interface Class value for the CDC class */ diff --git a/Demos/Host/LowLevel/VirtualSerialHost/VirtualSerialHost.c b/Demos/Host/LowLevel/VirtualSerialHost/VirtualSerialHost.c index c4322587ec..3aaaef3a8e 100644 --- a/Demos/Host/LowLevel/VirtualSerialHost/VirtualSerialHost.c +++ b/Demos/Host/LowLevel/VirtualSerialHost/VirtualSerialHost.c @@ -30,11 +30,11 @@ /** \file * - * Main source file for the CDCHost demo. This file contains the main tasks of + * Main source file for the VirtualSerialHost demo. This file contains the main tasks of * the demo and is responsible for the initial application hardware configuration. */ -#include "CDCHost.h" +#include "VirtualSerialHost.h" #if 0 /* NOTE: Here you can set up a standard stream using the created virtual serial port, so that the standard stream functions in diff --git a/Demos/Host/LowLevel/VirtualSerialHost/VirtualSerialHost.h b/Demos/Host/LowLevel/VirtualSerialHost/VirtualSerialHost.h index b6d3a3cd4b..679fd99ecf 100644 --- a/Demos/Host/LowLevel/VirtualSerialHost/VirtualSerialHost.h +++ b/Demos/Host/LowLevel/VirtualSerialHost/VirtualSerialHost.h @@ -30,11 +30,11 @@ /** \file * - * Header file for CDCHost.c. + * Header file for VirtualSerialHost.c. */ -#ifndef _CDC_HOST_H_ -#define _CDC_HOST_H_ +#ifndef _VIRTUALSERIAL_HOST_H_ +#define _VIRTUALSERIAL_HOST_H_ /* Includes: */ #include