2013-07-21 07:34 PM
The datasheet for 'F103F,G parts show additional timers, e.g. TIM11, not present on the earlier parts, e.g. 'F103RB. Where is documentation that specifies the IRQ number for these timers?
The datasheet says the NVIC has 60 interrupt channels, yet the datasheet for STM32F103xC, STM32F103xD and STM32F103xE that does not have these timers also shows 60 interrupt channels, which suggests these timers must share interrupt vectors with something else.2013-07-22 05:31 AM
STMicro\STM32F10x_StdPeriph_Lib_V3.4.0\Libraries\CMSIS\CM3\DeviceSupport\ST\STM32F10x\startup\arm\startup_stm32f10x_xl.s
DCD TIM1_BRK_TIM9_IRQHandler ; TIM1 Break and TIM9 DCD TIM1_UP_TIM10_IRQHandler ; TIM1 Update and TIM10 DCD TIM1_TRG_COM_TIM11_IRQHandler ; TIM1 Trigger and Commutation and TIM112013-07-22 05:53 AM
Also, in STM32F10x_StdPeriph_Lib_V3.5.0\Libraries\CMSIS\CM3\DeviceSupport\ST\STM32F10x\stm32f10x.h
TIM1_TRG_COM_TIM11_IRQn = 26,
/*!< TIM1 Trigger and Commutation Interrupt and TIM11 global interrupt */
To give better visibility on the answered topics, please click on Accept as Solution on the reply which solved your issue or answered your question.
2013-07-22 01:49 PM
2013-07-22 02:31 PM
I would rather ST put the IRQ numbers in the datasheet for the part. Looking at code files for documentation seems backwards.
It is in the reference manual, the code was a quick place to look. Page 193, Table 62http://www.st.com/web/en/resource/technical/document/reference_manual/CD00171190.pdf
2013-07-22 06:22 PM