From 3795ba9fc4b289622e40f53cf1271b67f13df1a3 Mon Sep 17 00:00:00 2001 From: kopecdav Date: Wed, 7 May 2025 18:22:41 +0200 Subject: [PATCH] fix(core): fix wakeup flags in nrf lib [no changelog] --- core/embed/io/nrf/stm32u5/nrf.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/core/embed/io/nrf/stm32u5/nrf.c b/core/embed/io/nrf/stm32u5/nrf.c index e5ccc0b27d..3cc1e44dff 100644 --- a/core/embed/io/nrf/stm32u5/nrf.c +++ b/core/embed/io/nrf/stm32u5/nrf.c @@ -27,7 +27,7 @@ #include #include #include -#include +#include #include #include "../crc8.h" @@ -803,7 +803,7 @@ void NRF_EXTI_INTERRUPT_HANDLER(void) { #ifdef USE_POWERCTL if (drv->wakeup) { // Inform the powerctl module about nrf/ble wakeup - wakeup_flags_set(WAKEUP_FLAG_BLE); + pm_wakeup_flags_set(PM_WAKEUP_FLAG_BLE); drv->wakeup = false; } #endif