Question
Stop modes and low power modes
Hello,
I'm using the the official example of CubeMX P2P_server and I want to enter stop2 mode during advertising to minimize the current consumption like this:
void SCH_Idle(void) {
LL_C2_PWR_SetPowerMode(LL_PWR_MODE_STOP2);
HAL_PWREx_EnableBLEActivityIT();
HAL_PWREx_EnterSTOP2Mode(PWR_STOPENTRY_WFI);
return;
}However, I have noticed that the processor doesn't enter the stop2 mode and current consumption for the processor only is about 1.25 mA which is High compared with the datasheet values!
