This discussion has been locked.
You can no longer post new replies to this discussion. If you have a question you can start a new discussion

Low Power Mode in STM32L152

Hi,
I am using the below function to enter low power mode in STM32L152, but yet the current consumption of MCU is about 4 mA. is there other configurations?

RCC_APB1PeriphClockCmd(RCC_APB1Periph_PWR,ENABLE);
PWR_EnterLowPowerRunMode(ENABLE);

Parents Reply Children
  • To me, this smells like a GPIO pin that is not clamped and energizes its transistors. Did you sure you disabled your GPIO block power supply?

  • The definitive guide to Cortex M0 end of chapter 17, suggests that on some processors
    if you have a debugger hooked up extra power will be required to provide the debugger
    the power it needs. it also says that just unplugging the debugger will not lower the current
    in some processors. What is required is to power the part down and power back up without
    the debugger connected on some processors.

  • I achieved the low power modes of MCU to about 3uA.
    The following commands set the MCU to low power sleep mode:

        RCC_Configuration();
        PWR_VoltageScalingConfig(PWR_VoltageScaling_Range1);
        /* Wait Until the Voltage Regulator is ready */
        while (PWR_GetFlagStatus(PWR_FLAG_VOS) != RESET) ;
        /* Init I/O ports */
        Init_GPIOs();
        GPIO_LowPower_Config();
        Config_RCC(&SavRCC);
        ExtInt_configuration();
        SysTick->CTRL = 0;
        SetHSICLKToMSI(RCC_MSIRange_0,DIV2,NoRTC);
        SystemCoreClockUpdate();
        enableInterrupts();
        //TIM4_configuration();
        PWR_EnterSleepMode(PWR_Regulator_LowPower,PWR_SLEEPEntry_WFI);
    

    My problem yet is that after switching between modes(RUN,LPR,LPS,..)the MCU does not enter to low power mode!