13 lines
192 B
C
13 lines
192 B
C
#ifndef __COMMAND_H__
|
|
#define __COMMAND_H__
|
|
|
|
#include "common.h"
|
|
|
|
|
|
#define COMMAND_BUFFER_SIZE 64 // 命令缓冲区大小
|
|
|
|
void parseCommand();
|
|
void command_uart_callback(uint8 dat);
|
|
|
|
#endif
|