Uncommented call to print_wakeup_cause

This commit is contained in:
root 2022-06-14 13:27:15 -05:00
parent 015e95807a
commit 669e45497c
1 changed files with 2 additions and 2 deletions

View File

@ -49,7 +49,7 @@
#include "nrfx.h"
#include "nrfx_gpiote.h"
#ifdef NRF_DEBUG_PRINT
void print_wakeup_cause(nrf_sleep_source_t cause);
static void print_wakeup_cause(nrf_sleep_source_t cause);
#endif
// Singleton instance of SleepMemory.
@ -111,7 +111,7 @@ bool common_hal_alarm_woken_from_sleep(void) {
nrf_sleep_source_t cause = _get_wakeup_cause();
#ifdef NRF_DEBUG_PRINT
if (cause != NRF_SLEEP_WAKEUP_UNDEFINED) {
// print_wakeup_cause(cause);
print_wakeup_cause(cause);
}
#endif
return cause == NRF_SLEEP_WAKEUP_GPIO || cause == NRF_SLEEP_WAKEUP_TIMER