Posted on May 10, 2017 at 22:35Hi all!I would like to use the LL peripherals API, but I need to use CAN, which I cannot find!Does ST did not developed it?best,tiago#can #ll #ll-api-can
Posted on October 09, 2017 at 14:28
I don't know about the PCAN View, and whether it shows that a node acknowledged a message.
You might need to recheck the CAN timing parameters for your application.
But, I see 2 things in your code:
1)...
Posted on June 15, 2017 at 10:13
Joerg,
notice that there is a bug in HAL CAN V1.7 in that exact function: HAL_CAN_Receive_IT.
You need to edit the file stm32f7xx_hal_can.c and place __HAL_UNLOCK(hcan) near the end of that function:
__H...
Posted on May 13, 2017 at 16:31Hi Rob,It seems that CAN_Receive_IT() in stm32f7xx_hal_can.c disables reception interrupt upon message reception.in your void HAL_CAN_RxCpltCallback(CAN_HandleTypeDef *CanHandle), you need to submit again the IT recept...