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;
↧