PM updates (missed last night)

git-svn-id: https://nuttx.svn.sourceforge.net/svnroot/nuttx/trunk@4983 7fd9a85b-ad96-42d3-883c-3090e2eb8679
This commit is contained in:
patacongo 2012-07-27 13:32:21 +00:00
parent 9b7cbb006a
commit 30cabc02d4
2 changed files with 19 additions and 6 deletions

View File

@ -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

View File

@ -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 */