diff options
Diffstat (limited to 'openpicc/application/cmd.h')
-rw-r--r-- | openpicc/application/cmd.h | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/openpicc/application/cmd.h b/openpicc/application/cmd.h new file mode 100644 index 0000000..8c048f2 --- /dev/null +++ b/openpicc/application/cmd.h @@ -0,0 +1,18 @@ +#ifndef CMD_H_ +#define CMD_H_ + +#include <queue.h> + +#define MAX_CMD_LEN 32 + +typedef struct { + enum { SRC_USB, SRC_RF } source; + portCHAR command[ MAX_CMD_LEN ]; +} cmd_type; + +portBASE_TYPE vCmdInit(void); +extern void DumpStringToUSB(char *string); +extern void DumpBufferToUSB(char* buffer, int len); +extern xQueueHandle xCmdQueue; + +#endif /*CMD_H_*/ |