2013-01-06 02:25 PM
I wanted to use EXTI4 EXTI5 and EXTI6 with the door GPIOA but I get the an error
''EXTI5_IRQn'' is undefined ''EXTI6_IRQn'' is undefinedI have not found the list of lines Exti that I can use! you can tell me where to find it?2013-01-06 04:53 PM
You can use all of them.
The high order EXTI share an interrupt routine, and you must then check each potential source. EXTI9_5_IRQHandler ; EXTI Line 9..5 EXTI15_10_IRQHandler ; EXTI Line 15..10 If in doubt about interrupts, go look at the vector table in the startup_stm32fxxx.s source file. EXTI9_5_IRQn = 23, /*!< External Line[9:5] Interrupts */ EXTI15_10_IRQn = 40, /*!< External Line[15:10] Interrupts */2013-01-08 01:06 AM
thank you very much, Clive :)