2008-11-15 11:29 PM
SysTick Interrupt
2011-05-17 03:50 AM
I am having a problem getting the systick interrupt. Yes I new to ARM prducts.
The SysTic control register shows the interrupt is enabled, count flag is 1, and mult-shot is enabled. The Interrupt Control State register shows systick interrupt is pending and the vector is 15. The I and F flags in CPS register are 0 (interrupts are enabled). Execution is out of sram and the vector tables is moved to 0x2000E800 and the TVOR register shows the correct vector table address. Does anyone know what is wrong? - Chuck2011-05-17 03:50 AM
http://www.st.com/stonline/products/support/micro/files/um0427.zip
on web and then to this example : STM32F10xFWLib_v2.0.3\FWLib\examples\SysTick Cheers, STOne-32.2011-05-17 03:50 AM
I am trying to use the systick example from the FW library.
We are using the Green Hills suite and ST does not provide support for this tool set. So I have had modify the examplet for the Green Hills SW. Boot pins are 00, the vectors located at 0x2000e800 is SRAM. Still no interrupts. Any suggestion?2011-05-17 03:51 AM
In case you're using the stm32f10x_it.c/.h files from the example to handle the interrupt, there's a typo which you should fix:
Code:
void SysTickHandler(void)
should beCode:
void SysTick_Handler(void)