I am searching for the description of the IRQ-Handlers
, which are defined in the stm32f4xx.c
file. I can't find any description of them.
For example:
void WEAK CAN1_TX_IRQHandler(void);
void WEAK CAN1_RX0_IRQHandler(void);
void WEAK CAN1_RX1_IRQHandler(void);
void WEAK CAN1_SCE_IRQHandler(void);
Ok, some of them are clear, but where can I find the information, what CAN1_SCE
means and under which conditions they occur?
Could anyone help me to find the description of the handlers?