how does stm32L151ccu6 enter stop mode?
Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Email to a Friend
- Report Inappropriate Content
‎2017-11-20 5:56 AM
Posted on November 20, 2017 at 14:56The original post was too long to process during our migration. Please click on the attachment to read the original post.
Solved! Go to Solution.
This discussion is locked. Please start a new topic to ask your question.
1 ACCEPTED SOLUTION
Accepted Solutions
Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Email to a Friend
- Report Inappropriate Content
‎2017-11-20 7:15 AM
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 3
Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Email to a Friend
- Report Inappropriate Content
‎2017-11-20 7:15 AM
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-
Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Email to a Friend
- Report Inappropriate Content
‎2017-11-20 5:23 PM
Posted on November 21, 2017 at 01:23
thank you for your reply . I got it
Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Email to a Friend
- Report Inappropriate Content
‎2018-04-25 9:15 AM
Posted on April 25, 2018 at 16:15
Hi
ELMHIRI.Syrine
I am having a similar issue although I have been able to wake up from STOP mode. I have a device connected to an I2C and SPI port which work fine after this but I am losing a device connected to the UART port. Is there something special I have to do to before entering stop mode for UART ports?