13 lines
146 B
C
13 lines
146 B
C
#include <uart.h>
|
|
#include <shell.h>
|
|
|
|
void main()
|
|
{
|
|
uart_init();
|
|
|
|
int shell_cont = 1;
|
|
while (shell_cont) {
|
|
shell_cont = shell();
|
|
}
|
|
}
|