2026-01-19 4:46 AM - edited 2026-01-19 4:51 AM
I have ordered NUCLEO-G491R to test STANDBY mode power consumption. The power consumption measurements are taken via the PPK2 from Nordic.
https://www.nordicsemi.com/Products/Development-hardware/Power-Profiler-Kit-2
The steps:
1. Take STM32CubeMX example project PWR_SHUTDOWN that is available for the Nucleo board.
2. Program the board (ensure the JP5 jumper is at the 5V_STLK position)
3. Remove the JP5 jumper because we will be powering the board via the external 3V3 (PPK2)
4. Connect the PPK2 to 3V3 and GND on the board.
5. Start sampling
See the results below:
When the device enters STANDBY, the current consumption is measured at about 1.5mA which is way above what is declared on the datasheet.
What could be the reason that I cant achieve the declared current consumption for the STANDBY mode via the official example project? I am convinced that measurements of the PPK2 are valid as I have used this board in the past to measure very low currents and it was showing reasonable results.
Thanks in advance for any tips/suggestions.
Solved! Go to Solution.
2026-02-02 1:33 AM - edited 2026-02-02 3:10 AM
Hello @LPetr.1
After further investigation, higher power consumption results from two main causes:
PB8-BOOT0 pin: Based on the product datasheet it's not recommended to leave this pin unconnected, because it does not support analog input mode. If the pin is configured as BOOT0, set a defined logic level to ensure proper entry into the bootloader. If the pin is configured as PB8 by reprogramming the nSWBOOT0 option bit, it operates as a standard GPIO; however, analog input mode is not available. You likely removed jumper JP7 (BOOT0 jumper) on the Nucleo board, so pin PB8-BOOT0 is floating and causes power consumption depending on noise on this pin. Touching this pin changes the power consumption.
Debug registers: You probably tried to debug the project, which activated the debug registers and caused the 1.4 mA consumption. You must clear the debug registers manually after each debug session when you want to run the project again. Try to insert the appropriate code to clear the debug registers.
You can use this code sequence :
DBGMCU->CR &= ~(DBGMCU_CR_DBG_SLEEP |
DBGMCU_CR_DBG_STOP |
DBGMCU_CR_DBG_STANDBY);
// If your device has APB1/APB2 freeze bits and you want timers to run
// while debugger is attached, clear those as well.
DBGMCU->APB1FZR1 = 0x00000000U;
DBGMCU->APB1FZR2 = 0x00000000U;
DBGMCU->APB2FZ = 0x00000000U; /* USER CODE END Init */Here is a screenshot where I managed to get nA consumption with these tips.
If your issue still persists, please do not hesitate to provide feedback.
If this information solves your issue, mark it as a solution so that other ST community users can reference it.
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-19 5:53 AM
Hello,
According to picture you shared, you seems measuring the current consumption of the board not the power consumption of the MCU.
You need to measure the power consumption on JP6.
2026-01-19 6:09 AM
2026-01-19 6:20 AM
You need to check the board's schematic. Any component consuming from 3.3V could be a source of current consumption. Check for example the availability of pull-up, pull-down resistors etc ..
When you measure a MCU power consumption, the chip needs to be isolated from any other extra components.
2026-01-19 10:26 PM - edited 2026-01-19 10:27 PM
x
2026-01-19 10:27 PM - edited 2026-01-20 1:48 AM
I have performed measurements via the IDD (JP6). See the following steps:
1.Set the JP8 jumper to [2-3] position as explained in the datasheet:
2. Connect the PPK2 as ampere meter via the JP6
3. Start sampling:
As you can see from the data above, the MCU in active mode draws under 30 mA which is probably expected
As you can see from the data above, the MCU in SHUTDOWN mode draws around 250uA which is still above declared current consumption.
Also, I have repeated the current consumption measurements using Multimeter Brymen BM869s and got simillar results, current consumption around 250uA.
My questions:
1. What could be the reason the current consumption is way above the declared even when measured via the IDD?
2. Ideally, I would like to achieve few hundred uA board consumption (not only Microcontroller). Perhaps you could point me in the right direction to identify which components could be leaking over 1mA of current? I have looked at the schematics but could not really identify any obvious sources. The only things that are connected to VDD (3V3) rail are the MCU itself and some IO's such as LED2 and user button but I highly doubt that could cause >1mA current leakage.
2026-01-20 3:17 AM - edited 2026-01-20 3:20 AM
I have performed more experiments with the NUCLEO-G491RE board:
I have opened the following solder bridges:
1. SB17/SB23 (STLINK RX/TX)
2. SB15 (debug trace)
3. SB38
4. SB25/SB26/SB31/SB30 (external crystals)
5. SB6 (LED2)
6. SB16 (User button)
7. SB1
8. SB27
9. SB40/SB41 (SWD/SCLK)
The lowest current consumption I have captured is 170uA with all of those disabled which is still above the declared.
At this point I am not sure what else can I do to further test it. I am questioning if the HAL example code is really correct at this point, perhaps something is missing that is crucial to current saving.
Perhaps you have this or any simillar STM32G4 based Nucleo board and could check ?
2026-01-20 3:27 AM
As @mƎALLEm said, have you checked the schematics?
You need to look very carefully for anything which could possibly "leak" current.
A couple often missed are:
Also remember that the STM32 may need a power cycle (not just a reset) after a debugger has been connected.
2026-01-20 3:39 AM - edited 2026-01-20 3:41 AM
Of course I have checked the schematics, but my hardware knowledge is somewhat limited. I have attempted to open all of those solder bridges after reviewing the schematic and what I have managed to identify as possible current leakage spots.
regarding the
, I have removed the J1 and J3, so I assume that should be fine right?
regarding the
It is not fully clear what you mean, perhaps you could clarify?
I see you have had simmilar problems
2026-01-20 3:49 AM
Hello,
Please refer to the following knowledge base articles:
How to minimize the power consumption in low power mode: An example using NUCLEO-F401RE board
Tips for using STM32 low-power modes