summaryrefslogtreecommitdiff
path: root/nuttx
diff options
context:
space:
mode:
authorpatacongo <patacongo@42af7a65-404d-4744-a932-0658087f49c3>2012-07-27 13:32:21 +0000
committerpatacongo <patacongo@42af7a65-404d-4744-a932-0658087f49c3>2012-07-27 13:32:21 +0000
commitcfe14dccae1e63f5067ea29d27921fda26d735b2 (patch)
tree344b18e6f8092ab5105661c5a1a0d662cf96471d /nuttx
parenta1f510576ad37d88d0985cf0ede02135c466d3a2 (diff)
downloadpx4-nuttx-cfe14dccae1e63f5067ea29d27921fda26d735b2.tar.gz
px4-nuttx-cfe14dccae1e63f5067ea29d27921fda26d735b2.tar.bz2
px4-nuttx-cfe14dccae1e63f5067ea29d27921fda26d735b2.zip
PM updates (missed last night)
git-svn-id: svn://svn.code.sf.net/p/nuttx/code/trunk@4983 42af7a65-404d-4744-a932-0658087f49c3
Diffstat (limited to 'nuttx')
-rw-r--r--nuttx/configs/stm3210e-eval/src/up_idle.c12
-rw-r--r--nuttx/configs/stm32f4discovery/src/stm32f4discovery-internal.h13
2 files changed, 19 insertions, 6 deletions
diff --git a/nuttx/configs/stm3210e-eval/src/up_idle.c b/nuttx/configs/stm3210e-eval/src/up_idle.c
index b73b88c08..983089d4a 100644
--- a/nuttx/configs/stm3210e-eval/src/up_idle.c
+++ b/nuttx/configs/stm3210e-eval/src/up_idle.c
@@ -104,17 +104,17 @@
# error "CONFIG_RTC_ALARM should be enabled to use CONFIG_PM_SLEEP_WAKEUP"
# endif
- /* If CONFIG_PM_SLEEP_WAKEUP is defined, then ifndefCONFIG_PM_SLEEP_WAKEUP_SEC
- * and ifndefCONFIG_PM_SLEEP_WAKEUP_NSEC define the delay until the STM32
+ /* If CONFIG_PM_SLEEP_WAKEUP is defined, then CONFIG_PM_SLEEP_WAKEUP_SEC
+ * and CONFIG_PM_SLEEP_WAKEUP_NSEC define the delay until the STM32
* awakens from PM_SLEEP mode.
*/
-# ifndefCONFIG_PM_SLEEP_WAKEUP_SEC
-# defineCONFIG_PM_SLEEP_WAKEUP_SEC 10
+# ifndef CONFIG_PM_SLEEP_WAKEUP_SEC
+# define CONFIG_PM_SLEEP_WAKEUP_SEC 10
# endif
-# ifndefCONFIG_PM_SLEEP_WAKEUP_NSEC
-# defineCONFIG_PM_SLEEP_WAKEUP_NSEC 0
+# ifndef CONFIG_PM_SLEEP_WAKEUP_NSEC
+# define CONFIG_PM_SLEEP_WAKEUP_NSEC 0
# endif
#endif
diff --git a/nuttx/configs/stm32f4discovery/src/stm32f4discovery-internal.h b/nuttx/configs/stm32f4discovery/src/stm32f4discovery-internal.h
index 917ccbd98..5d16f8caf 100644
--- a/nuttx/configs/stm32f4discovery/src/stm32f4discovery-internal.h
+++ b/nuttx/configs/stm32f4discovery/src/stm32f4discovery-internal.h
@@ -209,6 +209,19 @@ void stm32_disablefsmc(void);
void up_ledpminitialize(void);
#endif
+/****************************************************************************
+ * Name: up_pmbuttons
+ *
+ * Description:
+ * Configure the user button of the STM32f4discovery board as EXTI,
+ * so it is able to wakeup the MCU from the PM_STANDBY mode
+ *
+ ****************************************************************************/
+
+#if defined(CONFIG_PM) && defined(CONFIG_IDLE_CUSTOM) && defined(CONFIG_PM_BUTTONS)
+void up_pmbuttons(void);
+#endif
+
#endif /* __ASSEMBLY__ */
#endif /* __CONFIGS_STM3240G_EVAL_SRC_STM3240G_INTERNAL_H */