can_wizard/main/main.c

18 lines
465 B
C
Raw Normal View History

2023-11-22 11:48:03 +00:00
#include <stdio.h>
#include "freertos/FreeRTOS.h"
#include "freertos/task.h"
2023-11-22 11:48:03 +00:00
#include "can.h"
#include "fs.h"
#include "console.h"
#include "xvprintf.h"
2023-11-22 11:48:03 +00:00
2023-11-24 05:43:28 +00:00
2023-11-22 11:48:03 +00:00
void app_main(void) {
can_init();
init_tx_ringbuf();
2023-11-22 11:48:03 +00:00
xTaskCreate(can_task, "can task", 4096, NULL, CONFIG_CAN_TASK_PRIORITY, NULL);
initialize_filesystem();
initialize_console();
xTaskCreate(console_task_interactive, "console tsk int", 4096, NULL, CONFIG_CONSOLE_INT_PRIORITY, NULL);
2023-11-22 11:48:03 +00:00
}