Skip to content

Commit 015e958

Browse files
committed
Fix for Issue #6478
1 parent 2b05182 commit 015e958

File tree

2 files changed

+4
-0
lines changed

2 files changed

+4
-0
lines changed

ports/nrf/boards/clue_nrf52840_express/board.c

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -102,4 +102,5 @@ void reset_board(void) {
102102
}
103103

104104
void board_deinit(void) {
105+
common_hal_displayio_release_displays();
105106
}

ports/nrf/common-hal/alarm/__init__.c

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -48,6 +48,9 @@
4848
#include "nrf_power.h"
4949
#include "nrfx.h"
5050
#include "nrfx_gpiote.h"
51+
#ifdef NRF_DEBUG_PRINT
52+
void print_wakeup_cause(nrf_sleep_source_t cause);
53+
#endif
5154

5255
// Singleton instance of SleepMemory.
5356
const alarm_sleep_memory_obj_t alarm_sleep_memory_obj = {

0 commit comments

Comments
 (0)