From 61b738e2fc634c3525a74b1bc128a718707e2221 Mon Sep 17 00:00:00 2001 From: CarlWachter Date: Tue, 30 Apr 2024 15:25:06 +0200 Subject: [PATCH] Fix: Actually applying the configs for the CAN Filter --- src/devices/stm32/can.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/src/devices/stm32/can.cpp b/src/devices/stm32/can.cpp index 31bde0d..47e9c97 100644 --- a/src/devices/stm32/can.cpp +++ b/src/devices/stm32/can.cpp @@ -166,6 +166,7 @@ namespace sta config->FilterScale = CAN_FILTERSCALE_32BIT; config->FilterActivation = CAN_FILTER_DISABLE; config->SlaveStartFilterBank = MAX_FILTER_COUNT; + HAL_CAN_ConfigFilter(handle_, config); } }