X-Git-Url: http://git.linex4red.de/pub/USBasp.git/blobdiff_plain/2a90f66de211627f957c582e8277b7b7e2a940d4..31d8ebebc0796873f7c70db80a04acdcbb307ed8:/Demos/Host/LowLevel/PrinterHost/Lib/PrinterCommands.h diff --git a/Demos/Host/LowLevel/PrinterHost/Lib/PrinterCommands.h b/Demos/Host/LowLevel/PrinterHost/Lib/PrinterCommands.h index 4656d190e..f55d03b0f 100644 --- a/Demos/Host/LowLevel/PrinterHost/Lib/PrinterCommands.h +++ b/Demos/Host/LowLevel/PrinterHost/Lib/PrinterCommands.h @@ -28,6 +28,11 @@ this software. */ +/** \file + * + * Header file for PrinterCommands.c. + */ + #ifndef _PRINTER_COMMANDS_H_ #define _PRINTER_COMMANDS_H_ @@ -54,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: */