#include "bflb_mtimer.h" #include "bflb_uart.h" #include "shell.h" #include #include "semphr.h" #include "board.h" static struct bflb_device_s *uart0; extern void shell_init_with_task(struct bflb_device_s *shell); int main(void) { board_init(); configASSERT((configMAX_PRIORITIES > 4)); uart0 = bflb_device_get_by_name("uart0"); shell_init_with_task(uart0); vTaskStartScheduler(); while (1) { } }