Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
R
RIOT
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container Registry
Model registry
Operate
Environments
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
cm-projects
RIOT
Commits
508547d1
Commit
508547d1
authored
7 years ago
by
Kaspar Schleiser
Committed by
GitHub
7 years ago
Browse files
Options
Downloads
Plain Diff
Merge pull request #7385 from OTAkeys/pr/stm32_pm
cpu/stm32_common: fix stm32f1/2/4 pm
parents
ca154a70
dd49f225
No related branches found
Branches containing commit
No related tags found
No related merge requests found
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
cpu/cortexm_common/include/cpu.h
+2
-2
2 additions, 2 deletions
cpu/cortexm_common/include/cpu.h
cpu/stm32_common/periph/pm.c
+20
-0
20 additions, 0 deletions
cpu/stm32_common/periph/pm.c
cpu/stm32f1/include/periph_cpu.h
+5
-0
5 additions, 0 deletions
cpu/stm32f1/include/periph_cpu.h
with
27 additions
and
2 deletions
cpu/cortexm_common/include/cpu.h
+
2
−
2
View file @
508547d1
...
...
@@ -96,10 +96,10 @@ static inline void cortexm_sleep(int deep)
}
/* ensure that all memory accesses have completed and trigger sleeping */
_
_disable
_irq
();
unsigned
state
=
irq
_disable
();
__DSB
();
__WFI
();
__enable_irq
(
);
irq_restore
(
state
);
}
/**
...
...
This diff is collapsed.
Click to expand it.
cpu/stm32_common/periph/pm.c
+
20
−
0
View file @
508547d1
...
...
@@ -25,10 +25,22 @@
#include
"irq.h"
#include
"periph/pm.h"
#if defined(CPU_FAM_STM32F1) || defined(CPU_FAM_STM32F2) || defined(CPU_FAM_STM32F4)
#include
"stmclk.h"
#endif
#define ENABLE_DEBUG (0)
#include
"debug.h"
#ifndef PM_STOP_CONFIG
/**
* @brief Define config flags for stop mode
*
* Available values can be found in reference manual, PWR section, register CR.
*/
#define PM_STOP_CONFIG (PWR_CR_LPDS | PWR_CR_FPDS)
#endif
void
pm_set
(
unsigned
mode
)
{
int
deep
=
0
;
...
...
@@ -49,6 +61,7 @@ void pm_set(unsigned mode)
/* Clear PDDS and LPDS bits to enter stop mode on */
/* deepsleep with voltage regulator on */
PWR
->
CR
&=
~
(
PWR_CR_PDDS
|
PWR_CR_LPDS
);
PWR
->
CR
|=
PM_STOP_CONFIG
;
/* Set SLEEPDEEP bit of system control block */
deep
=
1
;
break
;
...
...
@@ -56,6 +69,13 @@ void pm_set(unsigned mode)
#endif
cortexm_sleep
(
deep
);
#if defined(CPU_FAM_STM32F1) || defined(CPU_FAM_STM32F2) || defined(CPU_FAM_STM32F4)
if
(
deep
)
{
/* Re-init clock after STOP */
stmclk_init_sysclk
();
}
#endif
}
#if defined(CPU_FAM_STM32F1) || defined(CPU_FAM_STM32F2) || defined(CPU_FAM_STM32F4)
...
...
This diff is collapsed.
Click to expand it.
cpu/stm32f1/include/periph_cpu.h
+
5
−
0
View file @
508547d1
...
...
@@ -67,6 +67,11 @@ extern "C" {
*/
#define PM_BLOCKER_INITIAL { .val_u32 = 0x01010101 }
/**
* @brief Define the config flag for stop mode
*/
#define PM_STOP_CONFIG (PWR_CR_LPDS)
#ifndef DOXYGEN
/**
* @brief Override GPIO mode options
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment