aboutsummaryrefslogtreecommitdiffstats
path: root/Demos/Host/Incomplete/PrinterHost/PrinterHost.h
diff options
context:
space:
mode:
Diffstat (limited to 'Demos/Host/Incomplete/PrinterHost/PrinterHost.h')
-rw-r--r--Demos/Host/Incomplete/PrinterHost/PrinterHost.h18
1 files changed, 2 insertions, 16 deletions
diff --git a/Demos/Host/Incomplete/PrinterHost/PrinterHost.h b/Demos/Host/Incomplete/PrinterHost/PrinterHost.h
index e1649563a..191cd7f12 100644
--- a/Demos/Host/Incomplete/PrinterHost/PrinterHost.h
+++ b/Demos/Host/Incomplete/PrinterHost/PrinterHost.h
@@ -39,6 +39,7 @@
#include <stdio.h>
#include "ConfigDescriptor.h"
+ #include "Lib/PrinterCommands.h"
#include <LUFA/Version.h>
#include <LUFA/Drivers/Misc/TerminalCodes.h>
@@ -58,20 +59,7 @@
/** LED mask for the library LED driver, to indicate that an error has occurred in the USB interface. */
#define LEDMASK_USB_ERROR (LEDS_LED1 | LEDS_LED3)
-
- #define PROTOCOL_UNIDIRECTIONAL 0x01
- #define PROTOCOL_BIDIRECTIONAL 0x02
- #define PROTOCOL_IEEE1284 0x03
-
- #define GET_DEVICE_ID 0
-
- /* Type Defines: */
- typedef struct
- {
- uint16_t Length;
- uint8_t String[128];
- } Device_ID_String_t;
-
+
/* External Variables: */
extern uint8_t PrinterProtocol;
@@ -86,6 +74,4 @@
void USB_Printer_Host(void);
- bool GetDeviceID(void);
-
#endif