Hi,
I need the 16 bit timer1 to have high priority, how do i set this to a high priority? And what priority does it have in my case when i use:
NVIC_EnableIRQ(TIMER1_IRQn);
Regards, Pascal
Hi,
I need the 16 bit timer1 to have high priority, how do i set this to a high priority? And what priority does it have in my case when i use:
NVIC_EnableIRQ(TIMER1_IRQn);
Regards, Pascal
Hi,
The default priority level (if not running with the Softdevice) is 0: infocenter.arm.com/.../index.jsp
You can change the interrupt priority by calling NVIC_SetPriority(TIMER0_IRQn, pri), where pri is from 0 (highest priority) to 3 (lowest).
Best regards Håkon