tbm-mcu/source/main.c

15 lines
164 B
C
Raw Normal View History

2017-02-27 14:48:38 +00:00
#include <stdio.h>
#include "shell.h"
#include "spi_flash.h"
#include "usart.h"
int main(void)
{
console_init();
2017-02-27 14:48:38 +00:00
init_spi();
cmd_loop("tbm # ");
2017-02-27 14:48:38 +00:00
return 0;
}