Uncommented call to print_wakeup_cause

This commit is contained in:
root 2022-06-14 13:27:15 -05:00
parent 015e95807a
commit 669e45497c

View File

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