Question
STM32F103 Assembler Interrupt Handling
Posted on August 30, 2017 at 11:16
Hello community,
Iwould like to configure Timer 2 of my STM32F103C8 to use it as a simple overflow interrupt service and Iwould like to do this in assembly language.
On page 198 of the reference manual i found this address of the TIM2 global interrupt:0x0000_00B0
But how can I define a section in my code which lies on that address?
For example something like this (pseudo code):
.section 0x000000B0
rjmp myTimer2OverflowHandler�?�?
#stm32 #interrupt