summaryrefslogtreecommitdiffstats
path: root/firmware/tests/cmd-test.c
blob: 6af916fe31de7770aca83021104657a95ab03944 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
#include <unistd.h>
#include <string.h>
#include <stdint.h>
#include <stdio.h>
#include <errno.h>

#include <uart_cmd.h>

static void my_out(const char *format, va_list ap)
{
	vprintf(format, ap);
}

static int my_cb(struct cmd_state *cs, enum cmd_op op, const char *cmd,
		 int argc, char **argv)
{
	int i;

	printf("my_cb(%u,%s,%u,[", op, cmd, argc);
	for (i = 0; i < argc; i++)
		printf("%s,", argv[i]);
	printf("])\n");

	return 0;
}

static struct cmd cmds[] = {
	{ "foo", CMD_OP_SET|CMD_OP_GET|CMD_OP_EXEC, my_cb,
	  "the foo command" },
	{ "bar", CMD_OP_GET, my_cb,
	  "the gettable bar command" },
	{ "baz", CMD_OP_SET, my_cb,
	  "the settable baz command" },
};

int main(int argc, char **argv)
{
	struct cmd_state cs;

	cs.out = my_out;
	uart_cmd_reset(&cs);
	uart_cmds_register(cmds, sizeof(cmds)/sizeof(cmds[0]));

	while (1) {
		uint8_t ch;
		int rc;

	       	rc = read(0, &ch, 1);
		if (rc < 0)
			exit(1);

		uart_cmd_char(&cs, ch);
	}
}