aboutsummaryrefslogtreecommitdiffstats
path: root/Demos/Device/LowLevel/USBtoSerial
diff options
context:
space:
mode:
authorDean Camera <dean@fourwalledcubicle.com>2009-06-10 05:03:45 +0000
committerDean Camera <dean@fourwalledcubicle.com>2009-06-10 05:03:45 +0000
commit6be24e44046ffc386e2f4072aa5cccb1c462f47f (patch)
tree3a9d00eacc42f772910581d6e2e06b2fc409e466 /Demos/Device/LowLevel/USBtoSerial
parent28343b1475b999e61c8fe98eb420507a0e6da388 (diff)
downloadlufa-6be24e44046ffc386e2f4072aa5cccb1c462f47f.tar.gz
lufa-6be24e44046ffc386e2f4072aa5cccb1c462f47f.tar.bz2
lufa-6be24e44046ffc386e2f4072aa5cccb1c462f47f.zip
Fixes to the MIDI device demos (ClassDriver, LowLevel); discard unused read-in events from the host, use standard MIDI event structure in low level demo rather than sending individual bytes.
Diffstat (limited to 'Demos/Device/LowLevel/USBtoSerial')
-rw-r--r--Demos/Device/LowLevel/USBtoSerial/USBtoSerial.h8
1 files changed, 0 insertions, 8 deletions
diff --git a/Demos/Device/LowLevel/USBtoSerial/USBtoSerial.h b/Demos/Device/LowLevel/USBtoSerial/USBtoSerial.h
index 1a4a1cb67..51c47c943 100644
--- a/Demos/Device/LowLevel/USBtoSerial/USBtoSerial.h
+++ b/Demos/Device/LowLevel/USBtoSerial/USBtoSerial.h
@@ -172,14 +172,6 @@
Parity_Mark = 3, /**< Mark parity bit mode on each frame */
Parity_Space = 4, /**< Space parity bit mode on each frame */
};
-
- /** Enum for the possible status codes for passing to the UpdateStatus() function. */
- enum USBtoSerial_StatusCodes_t
- {
- Status_USBNotReady = 0, /**< USB is not ready (disconnected from a USB host) */
- Status_USBEnumerating = 1, /**< USB interface is enumerating */
- Status_USBReady = 2, /**< USB interface is connected and ready */
- };
/* Function Prototypes: */
void SetupHardware(void);