Skip to content

Commit 53ed8be

Browse files
committed
set attachInterrupt irq prio to 3
1 parent 55760a4 commit 53ed8be

File tree

2 files changed

+6
-3
lines changed

2 files changed

+6
-3
lines changed

changelog.md

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,12 +18,15 @@
1818
- Added HwPWM3 for nRF52840
1919
- Added ISR_DEFERRED option for attachInterrupt() to defer callback from ISR context
2020
- Added digital_interrupt_deferred sketch for demo
21+
- Added support for using the Low Frequency RC oscillator ( PR #144 thanks to @jeremypoulter )
22+
- USE_LFRC or USE_LFXO must be defined in board's variant.h
23+
- Fixed Scanner running state when timeout ( PR #186 thanks to @Ryscho )
2124

2225
## 0.8.6
2326

2427
- Fixed dbgDumpMemory for buffer > 255 byte, thanks to @airbornemint
25-
- Added setConnSupervisionTimeout and setConnSupervisionTimeoutMS, thanks to @airbornemint
26-
- Decrease gpio's interrupt level to 2 to avoid conlfict with SD timing critical task, thanks to @Nenik
28+
- Added setConnSupervisionTimeout and setConnSupervisionTimeoutMS ( PR #177 thanks to @airbornemint )
29+
- Decrease gpio's interrupt level to 2 to avoid conlfict with SD timing critical task ( PR #179 thanks to @Nenik )
2730
- Fixed #174 window build error with Arduino 1.8.6 with verbose = off
2831

2932
## 0.8.5

cores/nRF5/WInterrupts.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ static void __initialize()
4444

4545
NVIC_DisableIRQ(GPIOTE_IRQn);
4646
NVIC_ClearPendingIRQ(GPIOTE_IRQn);
47-
NVIC_SetPriority(GPIOTE_IRQn, 2);
47+
NVIC_SetPriority(GPIOTE_IRQn, 3);
4848
NVIC_EnableIRQ(GPIOTE_IRQn);
4949
}
5050

0 commit comments

Comments
 (0)