tbm-mcu/include/shell.h

8 lines
110 B
C

#pragma once
struct cmd {
const char *key;
void (* exec)(const char *s);
};
void cmd_loop(const char *s);