Fix newly renamed VirtualSerial demos' include filename references so that they compile.

pull/1469/head
Dean Camera 15 years ago
parent cf22a744ec
commit 3757b1760f

@ -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

@ -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 <avr/io.h>

@ -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

@ -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 <avr/io.h>

@ -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

@ -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 <avr/io.h>

@ -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

@ -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 <avr/io.h>

@ -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

@ -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 <avr/io.h>

@ -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

@ -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 <avr/io.h>

@ -37,9 +37,9 @@
#define _CONFIGDESCRIPTOR_H_
/* Includes: */
#include <LUFA/Drivers/USB/USB.h> // USB Functionality
#include <LUFA/Drivers/USB/USB.h>
#include "CDCHost.h"
#include "VirtualSerialHost.h"
/* Macros: */
/** Interface Class value for the CDC class */

@ -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

@ -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 <avr/io.h>

Loading…
Cancel
Save