tbm-mcu/source/main.c

14 lines
176 B
C
Raw Normal View History

2017-02-27 14:48:38 +00:00
#include <stdio.h>
2017-03-11 13:07:12 +00:00
#include <console.h>
#include <shell.h>
2017-02-27 14:48:38 +00:00
int main(void)
{
console_init();
2017-05-19 19:00:36 +02:00
printf("TBM-dev (built on " __DATE__ ")\n");
cmd_loop("tbm # ");
2017-02-27 14:48:38 +00:00
return 0;
}