can_wizard/main/can.h

20 lines
348 B
C
Raw Normal View History

2023-11-22 11:48:03 +00:00
//
// Created by okhsunrog on 8/17/23.
//
#ifndef MAIN_CAN_H
#define MAIN_CAN_H
#include "driver/twai.h"
#include "sdkconfig.h"
// functions
void can_init();
void can_stop();
void calculate_hw_can_filter(uint32_t device_id, twai_filter_config_t* filter, bool ota_mode);
void can_bus_off_check();
void can_task(void* arg);
#endif // MAIN_CAN_H