hmathieu31 / JammerBox-System

PIR Project
GNU General Public License v3.0
1 stars 0 forks source link

Use correct EXTI handler #98

Closed emmanuel-pastor closed 2 years ago

emmanuel-pastor commented 2 years ago

The EXTI interrupt handler function on our STM32 are EXTI9_5_IRQHandler, EXTI15_10_IRQHandler, EXTI0_IRQHandler, EXTI1_IRQHandler, EXTI2_IRQHandler, EXTI3_IRQHandler and EXTI4_IRQHandler. (cf. page 197 of the 1137 page doc).

hmathieu31 commented 2 years ago

Don't worry too much on the configuration of the exti handler, it will be IDE handled

You can use the HAL library doc (found on internet) to know which functions will be implemented and how

Expect a higher implementation abstraction than with the Standard periph lib

emmanuel-pastor commented 2 years ago

106