Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
Erik Strand
lufa
Commits
3757b176
Commit
3757b176
authored
Dec 07, 2009
by
Dean Camera
Browse files
Fix newly renamed VirtualSerial demos' include filename references so that they compile.
parent
cf22a744
Changes
15
Hide whitespace changes
Inline
Side-by-side
Demos/Device/ClassDriver/DualVirtualSerial/DualVirtualSerial.c
View file @
3757b176
...
...
@@ -30,11 +30,11 @@
/** \file
*
* Main source file for the Dual
CDC
demo. This file contains the main tasks of
* Main source file for the Dual
VirtualSerial
demo. This file contains the main tasks of
* the demo and is responsible for the initial application hardware configuration.
*/
#include
"Dual
CDC
.h"
#include
"Dual
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
...
...
Demos/Device/ClassDriver/DualVirtualSerial/DualVirtualSerial.h
View file @
3757b176
...
...
@@ -30,11 +30,11 @@
/** \file
*
* Header file for Dual
CDC
.c.
* Header file for Dual
VirtualSerial
.c.
*/
#ifndef _DUAL_
CDC
_H_
#define _DUAL_
CDC
_H_
#ifndef _DUAL_
VIRTUALSERIAL
_H_
#define _DUAL_
VIRTUALSERIAL
_H_
/* Includes: */
#include
<avr/io.h>
...
...
Demos/Device/ClassDriver/VirtualSerial/VirtualSerial.c
View file @
3757b176
...
...
@@ -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
...
...
Demos/Device/ClassDriver/VirtualSerial/VirtualSerial.h
View file @
3757b176
...
...
@@ -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>
...
...
Demos/Device/ClassDriver/VirtualSerialMouse/VirtualSerialMouse.c
View file @
3757b176
...
...
@@ -30,11 +30,11 @@
/** \file
*
* Main source file for the
CDC
Mouse demo. This file contains the main tasks of
* Main source file for the
VirtualSerial
Mouse demo. This file contains the main tasks of
* the demo and is responsible for the initial application hardware configuration.
*/
#include
"
CDC
Mouse.h"
#include
"
VirtualSerial
Mouse.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
...
...
Demos/Device/ClassDriver/VirtualSerialMouse/VirtualSerialMouse.h
View file @
3757b176
...
...
@@ -30,11 +30,11 @@
/** \file
*
* Header file for
CDC
Mouse.c.
* Header file for
VirtualSerial
Mouse.c.
*/
#ifndef _
CDC
_MOUSE_H_
#define _
CDC
_MOUSE_H_
#ifndef _
VIRTUALSERIAL
_MOUSE_H_
#define _
VIRTUALSERIAL
_MOUSE_H_
/* Includes: */
#include
<avr/io.h>
...
...
Demos/Device/LowLevel/DualVirtualSerial/DualVirtualSerial.c
View file @
3757b176
...
...
@@ -30,11 +30,11 @@
/** \file
*
* Main source file for the Dual
CDC
demo. This file contains the main tasks of the demo and
* Main source file for the Dual
VirtualSerial
demo. This file contains the main tasks of the demo and
* is responsible for the initial application hardware configuration.
*/
#include
"Dual
CDC
.h"
#include
"Dual
VirtualSerial
.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
...
...
Demos/Device/LowLevel/DualVirtualSerial/DualVirtualSerial.h
View file @
3757b176
...
...
@@ -30,11 +30,11 @@
/** \file
*
* Header file for Dual
CDC
.c.
* Header file for Dual
VirtualSerial
.c.
*/
#ifndef _DUAL_
CDC
_H_
#define _DUAL_
CDC
_H_
#ifndef _DUAL_
VIRTUALSERIAL
_H_
#define _DUAL_
VIRTUALSERIAL
_H_
/* Includes: */
#include
<avr/io.h>
...
...
Demos/Device/LowLevel/VirtualSerial/VirtualSerial.c
View file @
3757b176
...
...
@@ -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
...
...
Demos/Device/LowLevel/VirtualSerial/VirtualSerial.h
View file @
3757b176
...
...
@@ -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>
...
...
Demos/Host/ClassDriver/VirtualSerialHost/VirtualSerialHost.c
View file @
3757b176
...
...
@@ -30,11 +30,11 @@
/** \file
*
* Main source file for the
CDC
Host demo. This file contains the main tasks of
* Main source file for the
VirtualSerial
Host demo. This file contains the main tasks of
* the demo and is responsible for the initial application hardware configuration.
*/
#include
"
CDC
Host.h"
#include
"
VirtualSerial
Host.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
...
...
Demos/Host/ClassDriver/VirtualSerialHost/VirtualSerialHost.h
View file @
3757b176
...
...
@@ -30,11 +30,11 @@
/** \file
*
* Header file for
CDC
Host.c.
* Header file for
VirtualSerial
Host.c.
*/
#ifndef _
CDC
_HOST_H_
#define _
CDC
_HOST_H_
#ifndef _
VIRTUALSERIAL
_HOST_H_
#define _
VIRTUALSERIAL
_HOST_H_
/* Includes: */
#include
<avr/io.h>
...
...
Demos/Host/LowLevel/VirtualSerialHost/ConfigDescriptor.h
View file @
3757b176
...
...
@@ -37,9 +37,9 @@
#define _CONFIGDESCRIPTOR_H_
/* Includes: */
#include
<LUFA/Drivers/USB/USB.h>
// USB Functionality
#include
<LUFA/Drivers/USB/USB.h>
#include
"
CDC
Host.h"
#include
"
VirtualSerial
Host.h"
/* Macros: */
/** Interface Class value for the CDC class */
...
...
Demos/Host/LowLevel/VirtualSerialHost/VirtualSerialHost.c
View file @
3757b176
...
...
@@ -30,11 +30,11 @@
/** \file
*
* Main source file for the
CDC
Host demo. This file contains the main tasks of
* Main source file for the
VirtualSerial
Host demo. This file contains the main tasks of
* the demo and is responsible for the initial application hardware configuration.
*/
#include
"
CDC
Host.h"
#include
"
VirtualSerial
Host.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
...
...
Demos/Host/LowLevel/VirtualSerialHost/VirtualSerialHost.h
View file @
3757b176
...
...
@@ -30,11 +30,11 @@
/** \file
*
* Header file for
CDC
Host.c.
* Header file for
VirtualSerial
Host.c.
*/
#ifndef _
CDC
_HOST_H_
#define _
CDC
_HOST_H_
#ifndef _
VIRTUALSERIAL
_HOST_H_
#define _
VIRTUALSERIAL
_HOST_H_
/* Includes: */
#include
<avr/io.h>
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment