2010-10-14 07:17 AM
i understand that enabling the intrrupts is done while using the NVIC->ISER register but where can i find exactly how.
what i meas is i could not find the description for each bit which bits i need to change in order to Enable the TIM2 gloabal Interrupt for example and the uarts and so on. thanks2010-10-14 08:20 AM
I find it easier to use the in-lined functions from core_cm3.h and the definitions in stm32f10x.h than bit-fiddling when it comes to NVIC. For example:
NVIC_EnableIRQ(USART1_IRQn);