can_wizard/main/can.c

142 lines
4.7 KiB
C
Raw Normal View History

2023-11-22 11:48:03 +00:00
#include "can.h"
2023-11-28 15:26:16 +00:00
#include "esp_err.h"
2023-11-22 11:48:03 +00:00
#include "esp_log.h"
2023-11-28 10:59:41 +00:00
#include "freertos/portmacro.h"
#include "freertos/projdefs.h"
#include "hal/twai_types.h"
2023-11-22 11:48:03 +00:00
#include "sdkconfig.h"
#include <stddef.h>
2023-11-22 11:48:03 +00:00
#include <stdio.h>
2023-11-24 05:30:27 +00:00
#include <string.h>
#include "freertos/ringbuf.h"
#include "xvprintf.h"
2023-11-25 08:01:19 +00:00
bool is_error_passive = false;
2023-11-28 11:40:41 +00:00
bool auto_recovery = false;
adv_filt_t adv_filters = {
.filters = NULL,
.enabled = false,
.sw_filtering = false,
};
2023-11-25 08:01:19 +00:00
2023-11-26 05:34:12 +00:00
SemaphoreHandle_t can_mutex;
volatile can_status_t curr_can_state = { 0 };
2023-11-26 05:34:12 +00:00
static can_status_t get_can_state() {
can_status_t result;
twai_status_info_t status = { 0 };
2023-11-25 08:01:19 +00:00
esp_err_t res = twai_get_status_info(&status);
if (res != ESP_OK) {
result.state = CAN_NOT_INSTALLED;
return result;
}
result.msgs_to_rx = status.msgs_to_rx;
result.msgs_to_tx = status.msgs_to_tx;
result.arb_lost_count = status.arb_lost_count;
result.bus_error_count = status.bus_error_count;
result.tx_error_counter = status.tx_error_counter;
result.rx_error_counter = status.rx_error_counter;
result.tx_failed_count = status.tx_failed_count;
result.rx_missed_count = status.rx_missed_count;
result.rx_overrun_count = status.rx_overrun_count;
2023-11-25 08:01:19 +00:00
switch (status.state) {
case TWAI_STATE_STOPPED:
result.state = CAN_STOPPED;
break;
2023-11-25 08:01:19 +00:00
case TWAI_STATE_BUS_OFF:
result.state = CAN_BUF_OFF;
break;
2023-11-25 08:01:19 +00:00
case TWAI_STATE_RECOVERING:
result.state = CAN_RECOVERING;
break;
2023-11-25 08:01:19 +00:00
default:
if (is_error_passive) result.state = CAN_ERROR_PASSIVE;
else result.state = CAN_ERROR_ACTIVE;
break;
2023-11-25 08:01:19 +00:00
}
return result;
2023-11-25 08:01:19 +00:00
}
void can_msg_to_str(twai_message_t *can_msg, char *start_str, char *out_str) {
char byte_str[3];
out_str[0] = '\0';
sprintf(out_str, "%scan frame: ID: %08X dlc: %d ", start_str, (int) can_msg->identifier, can_msg->data_length_code);
if (can_msg->data_length_code == 0) {
strcat(out_str, "(no data)");
} else {
strcat(out_str, "data: ");
for (int i = 0; i < can_msg->data_length_code; i++) {
sprintf(byte_str, "%02X", can_msg->data[i]);
strcat(out_str, byte_str);
}
}
}
bool matches_filters(twai_message_t *msg) {
2023-11-29 11:27:22 +00:00
List *tmp_cursor = adv_filters.filters;
while (tmp_cursor != NULL) {
smart_filt_element_t *curr_filter;
curr_filter = (smart_filt_element_t *) tmp_cursor->data;
if ((msg->identifier & curr_filter->mask) == curr_filter->filt) {
return true;
}
tmp_cursor = tmp_cursor->next;
}
return false;
}
// TODO: add software filtering
2023-11-22 11:48:03 +00:00
void can_task(void* arg) {
2023-11-28 11:26:40 +00:00
static const TickType_t can_task_timeout = pdMS_TO_TICKS(200);
2023-11-28 05:55:08 +00:00
uint32_t alerts = 0;
2023-11-28 10:59:41 +00:00
esp_err_t ret = ESP_OK;
BaseType_t sem_res;
2023-11-26 05:34:12 +00:00
can_mutex = xSemaphoreCreateMutex();
2023-11-22 11:48:03 +00:00
twai_message_t rx_msg;
char data_bytes_str[70];
2023-11-22 11:48:03 +00:00
for (;;) { // A Task shall never return or exit.
2023-11-28 05:55:08 +00:00
if (twai_read_alerts(&alerts, 0) == ESP_OK) {
2023-11-28 06:51:44 +00:00
if (alerts & TWAI_ALERT_ERR_ACTIVE) {
is_error_passive = false;
}
if (alerts & TWAI_ALERT_ERR_PASS) {
is_error_passive = true;
}
if (alerts & TWAI_ALERT_BUS_ERROR) {
print_w_clr_time("CAN error!", LOG_COLOR_RED, false);
2023-11-28 06:51:44 +00:00
}
2023-11-28 05:55:08 +00:00
if (alerts & TWAI_ALERT_BUS_OFF) {
print_w_clr_time("CAN went bus-off!", LOG_COLOR_RED, false);
2023-11-28 11:40:41 +00:00
if (auto_recovery) {
print_w_clr_time("Initiating auto-recovery...", LOG_COLOR_GREEN, false);
twai_initiate_recovery();
}
2023-11-28 05:55:08 +00:00
}
if (alerts & TWAI_ALERT_BUS_RECOVERED) {
print_w_clr_time("CAN recovered!", LOG_COLOR_BLUE, false);
2023-11-28 11:40:41 +00:00
if (auto_recovery) {
print_w_clr_time("Starting CAN...", LOG_COLOR_GREEN, false);
2023-11-28 15:26:16 +00:00
ESP_ERROR_CHECK(twai_start());
is_error_passive = false;
2023-11-28 11:40:41 +00:00
}
2023-11-28 05:55:08 +00:00
}
}
2023-11-28 06:51:44 +00:00
curr_can_state = get_can_state();
2023-11-28 10:59:41 +00:00
sem_res = xSemaphoreTake(can_mutex, 0);
if (sem_res == pdTRUE) {
while ((ret = twai_receive(&rx_msg, can_task_timeout)) == ESP_OK) {
if (adv_filters.sw_filtering) {
if (!matches_filters(&rx_msg)) continue;
}
can_msg_to_str(&rx_msg, "recv ", data_bytes_str);
print_w_clr_time(data_bytes_str, LOG_COLOR_BLUE, false);
2023-11-28 05:55:08 +00:00
}
xSemaphoreGive(can_mutex);
2023-11-28 11:26:40 +00:00
vTaskDelay(1);
2023-11-28 06:51:44 +00:00
}
2023-11-28 10:59:41 +00:00
if (sem_res != pdTRUE || ret == ESP_ERR_INVALID_STATE || ret == ESP_ERR_NOT_SUPPORTED) {
vTaskDelay(can_task_timeout);
}
2023-11-22 11:48:03 +00:00
}
}