FDCAN Tx Interrupts
Hi,
I'm trying to configure STM32H7 and STM32G4 FDCANs to generate an ISR on transmit complete frame.
I call the functios to enable respective ISRs:
HAL_FDCAN_ActivateNotification(&hfdcan1, FDCAN_IT_TX_COMPLETE, 0);
HAL_FDCAN_ActivateNotification(&hfdcan1, FDCAN_IT_TX_FIFO_EMPTY, 0);
When a FDCAN frame is trasmited, only TxFifoEmptyCallback notify an interrupt, there's no call to TxBufferCompleteCallback.
What am I missing?
