Question
I cannot make the CAN TX interrupt work (CAN RX int does work, though):
Using: stm32l476 on the ST eval board, I set the CAN INT as follows:
if (HAL_CAN_ActivateNotification(&CanHandle, CAN_IER_TMEIE | CAN_IER_FMPIE0 | CAN_IER_ERRIE |
CAN_IER_EPVIE | CAN_IER_BOFIE) != HAL_OK)
{
/* Notification Error */
Error_Handler();
}
Any idea?
