aboutsummaryrefslogtreecommitdiffstats
path: root/Demos/Host/LowLevel/PrinterHost/Lib/PrinterCommands.h
diff options
context:
space:
mode:
Diffstat (limited to 'Demos/Host/LowLevel/PrinterHost/Lib/PrinterCommands.h')
-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: */