Skip to content
Snippets Groups Projects
Commit db8bd1d2 authored by burneykb's avatar burneykb
Browse files

Adding setsetpoint to cli commands

parent 09191af0
No related branches found
No related tags found
No related merge requests found
......@@ -5,12 +5,14 @@
#include "cli_setpid.h"
#include "cli_getpid.h"
#include "cli_getimu.h"
#include "cli_setsetpoint.h"
enum CommandNameIds{
CMD_MONITOR,
CMD_GETPID,
CMD_SETPID,
CMD_GETIMU,
CMD_SETSETPOINT,
MAX_COMMANDS
};
......@@ -19,13 +21,15 @@ static cli_function_ptr cli_functions[] = {
&cli_monitor,
&cli_getpid,
&cli_setpid,
&cli_getimu
&cli_getimu,
&cli_setsetpoint
};
static char* commandNames[MAX_COMMANDS] = {
"monitor",
"getpid",
"setpid",
"getimu"
"getimu",
"setsetpoint"
};
#endif
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment