2025-08-19 6:37 PM
Hello,
I'm working with a RAK3172 based on STM32WLE5CC chip.
I'm using Zephyr RTOS and trying to use the power management features.
I've an uart communication, when CONFIG_PM=n, everything works well. When setting CONFIG_PM=y, I don't receive any data.
I've configured, the lsi, hsi, pll and rcc in my dts file.
I've tried a bunch of configuration, but impossible to get power management to work alongside uart.
I just have the following code:
int main(void)
{
while (1) {
gpio_pin_toggle_dt(&gpio_led0);
printk("Hello, World from main!\n");
k_msleep(1000);
}
return 0;
}
Thanks for the help