Skip to main content
guo sir
Associate
November 20, 2017
Solved

how does stm32L151ccu6 enter stop mode?

  • November 20, 2017
  • 3 replies
  • 1225 views
Posted on November 20, 2017 at 14:56

The original post was too long to process during our migration. Please click on the attachment to read the original post.
    This topic has been closed for replies.
    Best answer by Nesrine M_O
    Posted on November 20, 2017 at 16:15

    Hi

    ,

    Try to disable the

    Systick interrupt

    /* Enter Stop Mode */HAL_SuspendTick();HAL_PWR_EnterSTOPMode(PWR_LOWPOWERREGULATOR_ON, PWR_STOPENTRY_WFI);HAL_ResumeTick();

    -Nesrine-

    3 replies

    Nesrine M_O
    Nesrine M_OBest answer
    Associate
    November 20, 2017
    Posted on November 20, 2017 at 16:15

    Hi

    ,

    Try to disable the

    Systick interrupt

    /* Enter Stop Mode */HAL_SuspendTick();HAL_PWR_EnterSTOPMode(PWR_LOWPOWERREGULATOR_ON, PWR_STOPENTRY_WFI);HAL_ResumeTick();

    -Nesrine-

    guo sir
    guo sirAuthor
    Associate
    November 21, 2017
    Posted on November 21, 2017 at 01:23

    thank you for your reply .  I got it