Commit 8f41ab68 authored by nobodyguy's avatar nobodyguy Committed by Sandeep Mistry

Fixed GPIOTE interrupt priority

Priority 1 is reserved by the SoftDevice and shall not be used by application code
parent e3da01b0
......@@ -42,7 +42,7 @@ static void __initialize()
NVIC_DisableIRQ(GPIOTE_IRQn);
NVIC_ClearPendingIRQ(GPIOTE_IRQn);
NVIC_SetPriority(GPIOTE_IRQn, 1);
NVIC_SetPriority(GPIOTE_IRQn, 2);
NVIC_EnableIRQ(GPIOTE_IRQn);
}
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment