Added missing DoxyGen configuration file to the PrinterHost demo.

This commit is contained in:
Dean Camera 2009-07-20 13:52:45 +00:00
parent 8a28fd8e6c
commit 73a21890f6
2 changed files with 1490 additions and 2 deletions

File diff suppressed because it is too large Load Diff

View File

@ -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: */