From 4f25dc6c95e6890c21befeb9a0a54d436aaa9a35 Mon Sep 17 00:00:00 2001 From: Daniel Date: Sun, 27 Oct 2024 22:51:37 -0400 Subject: [PATCH] Fix Header File --- platforms/stm32f405/include/can.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/platforms/stm32f405/include/can.h b/platforms/stm32f405/include/can.h index dc1919e..501066c 100644 --- a/platforms/stm32f405/include/can.h +++ b/platforms/stm32f405/include/can.h @@ -26,7 +26,7 @@ typedef struct { } can_msg_t; HAL_StatusTypeDef can_init(can_t *can); -HAL_StatusTypeDef can_add_filter(can_t *can, uint32_t id1, uint32_t id2, uint32_t id3, uint32_t id4); +HAL_StatusTypeDef can_add_filter(can_t *can, uint32_t *id_list); HAL_StatusTypeDef can_send_msg(can_t *can, can_msg_t *msg); HAL_StatusTypeDef can_send_extended_msg(can_t *can, can_msg_t *msg);