summaryrefslogtreecommitdiff
path: root/nuttx/configs/stm3210e-eval/src/stm3210e-internal.h
diff options
context:
space:
mode:
authorpatacongo <patacongo@42af7a65-404d-4744-a932-0658087f49c3>2012-07-04 23:19:59 +0000
committerpatacongo <patacongo@42af7a65-404d-4744-a932-0658087f49c3>2012-07-04 23:19:59 +0000
commitd2a5c3d4f5b9899dc5de05c49ede4e616fae9a64 (patch)
tree0069f942928564b5216301ec2623b1f102d46fb5 /nuttx/configs/stm3210e-eval/src/stm3210e-internal.h
parent08088bc230efd32182b46b42b42e2b5e7d83a265 (diff)
downloadpx4-nuttx-d2a5c3d4f5b9899dc5de05c49ede4e616fae9a64.tar.gz
px4-nuttx-d2a5c3d4f5b9899dc5de05c49ede4e616fae9a64.tar.bz2
px4-nuttx-d2a5c3d4f5b9899dc5de05c49ede4e616fae9a64.zip
STM32 PM update
git-svn-id: svn://svn.code.sf.net/p/nuttx/code/trunk@4908 42af7a65-404d-4744-a932-0658087f49c3
Diffstat (limited to 'nuttx/configs/stm3210e-eval/src/stm3210e-internal.h')
-rw-r--r--nuttx/configs/stm3210e-eval/src/stm3210e-internal.h26
1 files changed, 13 insertions, 13 deletions
diff --git a/nuttx/configs/stm3210e-eval/src/stm3210e-internal.h b/nuttx/configs/stm3210e-eval/src/stm3210e-internal.h
index ddfbee428..0f31b6201 100644
--- a/nuttx/configs/stm3210e-eval/src/stm3210e-internal.h
+++ b/nuttx/configs/stm3210e-eval/src/stm3210e-internal.h
@@ -180,18 +180,6 @@ void weak_function stm32_spiinitialize(void);
void weak_function stm32_usbinitialize(void);
/************************************************************************************
- * Name: up_ledpminitialize
- *
- * Description:
- * Register the LEDs to receive power management event callbacks
- *
- ************************************************************************************/
-
-#ifdef CONFIG_PM
-void up_ledpminitialize(void);
-#endif
-
-/************************************************************************************
* Name: stm32_extcontextsave
*
* Description:
@@ -305,6 +293,18 @@ void stm32_deselectlcd(void);
#endif /* CONFIG_STM32_FSMC */
/************************************************************************************
+ * Name: up_ledpminitialize
+ *
+ * Description:
+ * Register the LEDs to receive power management event callbacks
+ *
+ ************************************************************************************/
+
+#if defined(CONFIG_PM) && defined(CONFIG_ARCH_LEDS)
+void up_ledpminitialize(void);
+#endif
+
+/************************************************************************************
* Name: up_pmbuttons
*
* Description:
@@ -314,7 +314,7 @@ void stm32_deselectlcd(void);
************************************************************************************/
#if defined(CONFIG_PM) && defined(CONFIG_IDLE_CUSTOM)
-EXTERN void up_pmbuttons(void);
+void up_pmbuttons(void);
#endif
/************************************************************************************