Quantcast
Channel: Keil Discussion Forum RSS Feed
Viewing all articles
Browse latest Browse all 3049

ARM: bxCAN : non bloking read

$
0
0
Hello, I try to use the bxCAN module on STM32F407. I have a board sending CAN messages and a board receiving CAN messages. All is working fine in bloking mode with call to HAL_CAN_Receive function. But I have troubles using non bloking mode with HAL_CAN_Receive_IT function. Here is my main loop: for (;;) { halRes = HAL_CAN_Receive_IT(&s_hPxbCan, 0); if(HAL_OK == halRes) { halRes = HAL_OK;

Viewing all articles
Browse latest Browse all 3049