2024-06-18 12:42:44 +02:00
|
|
|
#include <stm32f302xc.h>
|
|
|
|
#include <stm32f3xx_hal.h>
|
|
|
|
#include <stm32f3xx_hal_conf.h>
|
|
|
|
|
|
|
|
HAL_StatusTypeDef ftcan_init(CAN_HandleTypeDef *hcan);
|
|
|
|
|
|
|
|
HAL_StatusTypeDef ftcan_transmit(CAN_HandleTypeDef *hcan, uint16_t id, const uint8_t *data, size_t datalen);
|
2024-06-22 17:38:23 +02:00
|
|
|
|
|
|
|
HAL_StatusTypeDef ftcan_add_filter(CAN_HandleTypeDef *handle, uint16_t id, uint16_t mask);
|