summaryrefslogtreecommitdiff
path: root/nuttx/configs/stm3210e-eval/README.txt
diff options
context:
space:
mode:
authorGregory Nutt <gnutt@nuttx.org>2014-03-04 08:58:01 -0600
committerGregory Nutt <gnutt@nuttx.org>2014-03-04 08:58:01 -0600
commit4c45e1d61f52b056bd650d3db6b9a4c3acd12130 (patch)
tree7197832d5ac4165b84a3669bee70317173e5a948 /nuttx/configs/stm3210e-eval/README.txt
parent1f05e8673cafe0e6d45893cdd170f65c454d1635 (diff)
downloadnuttx-4c45e1d61f52b056bd650d3db6b9a4c3acd12130.tar.gz
nuttx-4c45e1d61f52b056bd650d3db6b9a4c3acd12130.tar.bz2
nuttx-4c45e1d61f52b056bd650d3db6b9a4c3acd12130.zip
configs/stm32f4discovery/pm: Configuration converted to use the kconfig-frontends tools
Diffstat (limited to 'nuttx/configs/stm3210e-eval/README.txt')
-rw-r--r--nuttx/configs/stm3210e-eval/README.txt10
1 files changed, 5 insertions, 5 deletions
diff --git a/nuttx/configs/stm3210e-eval/README.txt b/nuttx/configs/stm3210e-eval/README.txt
index 2c90cf269..c60049555 100644
--- a/nuttx/configs/stm3210e-eval/README.txt
+++ b/nuttx/configs/stm3210e-eval/README.txt
@@ -943,23 +943,23 @@ Where <subdir> is one of the following:
CONFIG_ARMV7M_TOOLCHAIN_CODESOURCERYW=y : CodeSourcery under Windows
- CONFIG_PM_CUSTOMINIT and CONFIG_IDLE_CUSTOM are necessary parts of the
+ CONFIG_ARCH_CUSTOM_PMINIT and CONFIG_ARCH_IDLE_CUSTOM are necessary parts of the
PM configuration:
- CONFIG_PM_CUSTOMINIT=y
+ CONFIG_ARCH_CUSTOM_PMINIT=y
- CONFIG_PM_CUSTOMINIT moves the PM initialization from arch/arm/src/stm32/stm32_pminitialiaze.c
+ CONFIG_ARCH_CUSTOM_PMINIT moves the PM initialization from arch/arm/src/stm32/stm32_pminitialiaze.c
to configs/stm3210-eval/src/up_pm.c. This allows us to support board-
specific PM initialization.
- CONFIG_IDLE_CUSTOM=y
+ CONFIG_ARCH_IDLE_CUSTOM=y
The bulk of the PM activities occur in the IDLE loop. The IDLE loop is
special because it is what runs when there is no other task running. Therefore
when the IDLE executes, we can be assure that nothing else is going on; this
is the ideal condition for doing reduced power management.
- The configuration CONFIG_IDLE_CUSTOM allows us to "steal" the normal STM32
+ The configuration CONFIG_ARCH_IDLE_CUSTOM allows us to "steal" the normal STM32
IDLE loop (of arch/arm/src/stm32/stm32_idle.c) and replace this with our own
custom IDLE loop (at configs/stm3210-eval/src/up_idle.c).