2026-01-28 2:26 AM - last edited on 2026-01-28 3:36 AM by Andrew Neil
Hello all,
We are testing LPUART wake-up from Stop 2 mode using the STM32CubeU0 LL example:
STM32Cube_FW_U0_V1.2.0/Projects/NUCLEOU083RC/Examples_LL/LPUART/LPUART_WakeUpFromStop2_Init
We made a minimal modification to the example:
Observed behavior on NUCLEO-U083RC
Additional observations
Has this behavior been observed before?
Is there any known requirement or additional reset/initialization step specific to LPUART2 for wake-up from Stop 2 after a power-on reset? I have attached the (modified) example code for your reference.
Thanks in advance for your support.
Solved! Go to Solution.
2026-01-29 2:02 AM - edited 2026-01-29 2:03 AM
Hello @Errorr__
Based on the reference manual table 22
LPUART 2 and 3 does not support wakeup capability from stop 2 mode.
Only LPUART1 supports this feature. This limitation is intentional to make stop 2 mode more power efficient.
I recommend using LPUART1, or use stop 0 or stop 1 mode if you need to use LPUART2 or LPUART3.
BR
Gyessine
To give better visibility on the answered topics, please click on Accept as Solution on the reply which solved your issue or answered your question.
2026-01-29 2:02 AM - edited 2026-01-29 2:03 AM
Hello @Errorr__
Based on the reference manual table 22
LPUART 2 and 3 does not support wakeup capability from stop 2 mode.
Only LPUART1 supports this feature. This limitation is intentional to make stop 2 mode more power efficient.
I recommend using LPUART1, or use stop 0 or stop 1 mode if you need to use LPUART2 or LPUART3.
BR
Gyessine
To give better visibility on the answered topics, please click on Accept as Solution on the reply which solved your issue or answered your question.
2026-01-29 2:20 AM
Hi @Gyessine ,
Thank you for the response. When we checked the reference manual, Table 22 indicates that LPUART (x = 1, 2, 3) supports wake-up from Stop 2 mode (I’ve attached a screenshot for reference). However, it appears that this information differs between document versions. The document you referred to is RM0503 Rev. 4, whereas we were referring to RM0503 Rev. 2.
I also reverified the ST example using LPUART2 with Stop 1 mode instead of Stop 2, and it works correctly.
2026-01-29 2:28 AM
Hello @Errorr__
the fact that LPUART2 and LPUART3 supports wake-up capability in stop 2 mode in revision 2 is a documentation error that was corrected in newer versions
I am glad you solved your issue. Please mark it as solved so that it can serve as a reference for other community users.
BR
Gyessine
To give better visibility on the answered topics, please click on Accept as Solution on the reply which solved your issue or answered your question.
2026-01-29 2:29 AM
@Errorr__ wrote:The document you referred to is RM0503 Rev. 4, whereas we were referring to RM0503 Rev. 2.
Always good to make sure you have the most recent revision!
If you look at the revision history in Rev 4, you'll see that a lot was changed since Rev 2.
2026-01-29 3:18 AM
Yes, this was actually good lesson!