tbm-mcu/include/shell.h

14 lines
273 B
C
Raw Normal View History

2017-02-27 14:48:38 +00:00
#pragma once
struct cmd {
const char *key;
2017-03-12 00:33:09 +00:00
void (* exec)(const char *line);
2017-02-27 14:48:38 +00:00
};
2017-03-12 00:33:09 +00:00
void do_flash_cmd(const char *line);
2017-05-19 19:02:03 +02:00
void do_ftl_cmd(const char *line);
void do_mufs_cmd(const char *line);
2017-03-23 15:20:00 +00:00
2017-03-12 00:33:09 +00:00
void cmd_exec(struct cmd *cmds, const char *line);
void cmd_loop(const char *s);