aboutsummaryrefslogtreecommitdiffstats
path: root/Demos/Host/LowLevel/PrinterHost/Lib
diff options
context:
space:
mode:
authorDean Camera <dean@fourwalledcubicle.com>2009-07-20 13:52:45 +0000
committerDean Camera <dean@fourwalledcubicle.com>2009-07-20 13:52:45 +0000
commit73a21890f6b37becc1e42566a3a716ae5eb96a0e (patch)
tree9c6cc66231c9492fea79524afcb01449679c5e41 /Demos/Host/LowLevel/PrinterHost/Lib
parent8a28fd8e6ccdb6a33727f7df089802b4d34dbea7 (diff)
downloadlufa-73a21890f6b37becc1e42566a3a716ae5eb96a0e.tar.gz
lufa-73a21890f6b37becc1e42566a3a716ae5eb96a0e.tar.bz2
lufa-73a21890f6b37becc1e42566a3a716ae5eb96a0e.zip
Added missing DoxyGen configuration file to the PrinterHost demo.
Diffstat (limited to 'Demos/Host/LowLevel/PrinterHost/Lib')
-rw-r--r--Demos/Host/LowLevel/PrinterHost/Lib/PrinterCommands.h7
1 files changed, 5 insertions, 2 deletions
diff --git a/Demos/Host/LowLevel/PrinterHost/Lib/PrinterCommands.h b/Demos/Host/LowLevel/PrinterHost/Lib/PrinterCommands.h
index 896a5903e..f55d03b0f 100644
--- a/Demos/Host/LowLevel/PrinterHost/Lib/PrinterCommands.h
+++ b/Demos/Host/LowLevel/PrinterHost/Lib/PrinterCommands.h
@@ -59,10 +59,13 @@
#define PRINTER_DATA_OUT_PIPE 2
/* Type Defines: */
+ /** Type define for a Printer Command Data structure, for the encapsulation of raw printer commands to
+ * send to an attached printer device.
+ */
typedef struct
{
- char* Data;
- uint16_t Length;
+ char* Data; /**< Printer commands to send to the attached printer */
+ uint16_t Length; /**< Length in bytes of the commands to send to the attached printer */
} Printer_Data_t;
/* Function Prototypes: */