Skip to content
Snippets Groups Projects
cli.h 228 B
#ifndef __CLI_H
#define __CLI_H





enum CommandNameIds{
	CMD_MONITOR,
	CMD_SETPID,
	CMD_GETPID,
	CMD_GETIMU,
	MAX_COMMANDS
};

static char* commandNames[MAX_COMMANDS] = {
	"monitor",
	"setPid",
	"getPid",
	"getImu"
};


#endif