User Activity

Posted on December 30, 2014 at 05:19I am using timer2 and I am trying to generate an interrupt from it, so according to vector table the TIM2 ID is 44 so i  am defining an interrupt routine as __interrupt(44) void TIM2_IRQHandler() so why is it not ...
Posted on December 23, 2014 at 10:40I am trying to build a program at a different location of flash, I am assigning the memory of flash at 0x08020000(by default it will be at 0x08000000). during build time, it pops multiple errors like this lkarm E1...
Posted on December 22, 2014 at 00:15how to fix the memory address for jump table during run time? is there any keyword i should use in linker file?? #stm32discovery
Posted on December 18, 2014 at 11:57now I have 2 hex files running independently, to perform context switching i am using a systick timer, now should i use a single vector table to link them by calling same ISR, or define 2 Vector tables and call 2 ...
Posted on December 18, 2014 at 09:20how to call Function from the interrupt service routine?