forked from mfulz_github/qmk_firmware
Added missing DoxyGen configuration file to the PrinterHost demo.
This commit is contained in:
parent
8a28fd8e6c
commit
73a21890f6
File diff suppressed because it is too large
Load Diff
|
@ -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: */
|
||||
|
|
Loading…
Reference in New Issue