#include #include "freertos/FreeRTOS.h" #include "freertos/task.h" #include "can.h" #include "fs.h" #include "console.h" #include "xvprintf.h" void app_main(void) { init_tx_ringbuf(); xTaskCreate(can_task, "can task", 4800, NULL, CONFIG_CAN_TASK_PRIORITY, NULL); initialize_filesystem(); initialize_console(); xTaskCreate(console_task_interactive, "console tsk int", 8000, NULL, CONFIG_CONSOLE_INT_PRIORITY, NULL); }