blob: 8c048f2f4f378251949d935fe0d5b657699f6f04 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
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_*/
|