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