From b471de12837e967433e03c39d0c0b3b004a5a32d Mon Sep 17 00:00:00 2001 From: YunHorn Technology Date: Thu, 22 Feb 2024 12:14:03 +0800 Subject: [PATCH] revised for low power --- Core/Inc/sys_conf.h | 8 ++++---- Core/Src/main.c | 2 +- Core/Src/sys_app.c | 4 ++-- 3 files changed, 7 insertions(+), 7 deletions(-) diff --git a/Core/Inc/sys_conf.h b/Core/Inc/sys_conf.h index 37cdd34..4941614 100644 --- a/Core/Inc/sys_conf.h +++ b/Core/Inc/sys_conf.h @@ -47,12 +47,12 @@ extern "C" { /** * @brief Verbose level for all trace logs */ -#define VERBOSE_LEVEL VLEVEL_H +#define VERBOSE_LEVEL VLEVEL_OFF /** * @brief Enable trace logs */ -#define APP_LOG_ENABLED 1 +#define APP_LOG_ENABLED 0 /** * @brief Activate monitoring (probes) of some internal RF signals for debug purpose @@ -75,13 +75,13 @@ extern "C" { * @brief Enable/Disable MCU Debugger pins (dbg serial wires) * @note by HW serial wires are ON by default, need to put them OFF to save power */ -#define DEBUGGER_ENABLED 1 +#define DEBUGGER_ENABLED 0 /** * @brief Disable Low Power mode * @note 0: LowPowerMode enabled. MCU enters stop2 mode, 1: LowPowerMode disabled. MCU enters sleep mode only */ -#define LOW_POWER_DISABLE 1 +#define LOW_POWER_DISABLE 0 /* USER CODE BEGIN EC */ diff --git a/Core/Src/main.c b/Core/Src/main.c index cac84ea..5c4c21c 100644 --- a/Core/Src/main.c +++ b/Core/Src/main.c @@ -116,7 +116,7 @@ int main(void) /* USER CODE BEGIN 2 */ - HAL_Delay(3000); + //HAL_Delay(3000); /* USER CODE END 2 */ diff --git a/Core/Src/sys_app.c b/Core/Src/sys_app.c index afd0327..33a4899 100644 --- a/Core/Src/sys_app.c +++ b/Core/Src/sys_app.c @@ -122,8 +122,8 @@ void SystemApp_Init(void) /*Init low power manager*/ UTIL_LPM_Init(); /* Disable Stand-by mode */ - UTIL_LPM_SetOffMode((1 << CFG_LPM_APPLI_Id), UTIL_LPM_DISABLE); - + //UTIL_LPM_SetOffMode((1 << CFG_LPM_APPLI_Id), UTIL_LPM_DISABLE); + UTIL_LPM_SetOffMode((1 << CFG_LPM_APPLI_Id), UTIL_LPM_ENABLE); #if defined (LOW_POWER_DISABLE) && (LOW_POWER_DISABLE == 1) /* Disable Stop Mode */ UTIL_LPM_SetStopMode((1 << CFG_LPM_APPLI_Id), UTIL_LPM_DISABLE);