Skip to content

Commit 65bc07c

Browse files
JordanYateskartben
authored andcommitted
soc: st: stm32: build warning for STM32_ENABLE_DEBUG_SLEEP_STOP
Add a warning in the build system if both `CONFIG_PM` and `STM32_ENABLE_DEBUG_SLEEP_STOP` are enabled at the same time. The first is likely only enabled if the SoC is intended to be driven into low power states to save power, while the later prevents the SoC from being as low power as it can be. Signed-off-by: Jordan Yates <jordan@embeint.com>
1 parent f790f10 commit 65bc07c

File tree

1 file changed

+7
-0
lines changed

1 file changed

+7
-0
lines changed

soc/st/stm32/common/CMakeLists.txt

+7
Original file line numberDiff line numberDiff line change
@@ -26,3 +26,10 @@ endif()
2626
if (CONFIG_STM32_WKUP_PINS)
2727
zephyr_sources(stm32_wkup_pins.c)
2828
endif()
29+
30+
if (CONFIG_PM AND CONFIG_STM32_ENABLE_DEBUG_SLEEP_STOP)
31+
message(WARNING "\
32+
SoC Power Management (CONFIG_PM) enabled but the DBGMCU is still enabled \
33+
(CONFIG_STM32_ENABLE_DEBUG_SLEEP_STOP). The SoC will use more power than expected \
34+
in STOP modes due to internal oscillators that remain active.")
35+
endif()

0 commit comments

Comments
 (0)