cpu/sam3x8e: put PendSV IRQ to lowest prio

This commit is contained in:
Hauke Petersen 2014-10-18 13:23:40 +02:00
parent a4d7ee8d4d
commit 8b992d03c2

View File

@ -26,4 +26,7 @@ void cpu_init(void)
{
/* disable the watchdog timer */
WDT->WDT_MR |= WDT_MR_WDDIS;
/* set PendSV interrupt priority to lowest possible value */
NVIC_SetPriority(PendSV_IRQn, 0xff);
}