cancel
Showing results for 
Search instead for 
Did you mean: 

Can't meet STM32G0 power spec in "Low Power sleep" mode

Felix1
Associate II

I had using sample code "low power sleep mode", the current measure result is over datasheet spec, how to do can get datasheet value?

The measurement result is around 1mA, the datasheet show 60uA.

Hardware paltform: NUCLEO-G071RB

Software version: 1.3.0

STM32Cube_FW_G0_V1.3.0\Projects\NUCLEO-G071RB\Examples\PWR\PWR_LPSLEEP\

1 ACCEPTED SOLUTION

Accepted Solutions
Mohamed Aymen HZAMI
ST Employee

Hello Felix,

To reach requested consumption you have to change clock source as stated in mentioned table 27 (in DataSheet), the HCLK should use fHSE bypass or fLSE bypass.

HSI itself has consumption of 155 uA see table Table 41. HSI16 oscillator characteristics in DataSheet.

SB17 it should be removed.

Best Regards,

Mohamed Aymen.

View solution in original post

2 REPLIES 2
Mohamed Aymen HZAMI
ST Employee

Hello Felix,

To reach requested consumption you have to change clock source as stated in mentioned table 27 (in DataSheet), the HCLK should use fHSE bypass or fLSE bypass.

HSI itself has consumption of 155 uA see table Table 41. HSI16 oscillator characteristics in DataSheet.

SB17 it should be removed.

Best Regards,

Mohamed Aymen.

Thank for your reply.