File tree Expand file tree Collapse file tree 2 files changed +6
-3
lines changed Expand file tree Collapse file tree 2 files changed +6
-3
lines changed Original file line number Diff line number Diff line change 18
18
- Added HwPWM3 for nRF52840
19
19
- Added ISR_DEFERRED option for attachInterrupt() to defer callback from ISR context
20
20
- 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 )
21
24
22
25
## 0.8.6
23
26
24
27
- 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 )
27
30
- Fixed #174 window build error with Arduino 1.8.6 with verbose = off
28
31
29
32
## 0.8.5
Original file line number Diff line number Diff line change @@ -44,7 +44,7 @@ static void __initialize()
44
44
45
45
NVIC_DisableIRQ (GPIOTE_IRQn );
46
46
NVIC_ClearPendingIRQ (GPIOTE_IRQn );
47
- NVIC_SetPriority (GPIOTE_IRQn , 2 );
47
+ NVIC_SetPriority (GPIOTE_IRQn , 3 );
48
48
NVIC_EnableIRQ (GPIOTE_IRQn );
49
49
}
50
50
You can’t perform that action at this time.
0 commit comments