summaryrefslogtreecommitdiff
path: root/nuttx/configs/mbed
diff options
context:
space:
mode:
authorGregory Nutt <gnutt@nuttx.org>2015-03-31 15:00:23 -0600
committerGregory Nutt <gnutt@nuttx.org>2015-03-31 15:00:23 -0600
commit494dfe2ae6157348956b941eb7a1f57b66181a56 (patch)
tree7201b16b309f34b73f46936ed1980c0ef0b8154a /nuttx/configs/mbed
parent49a7570f92a3ae31838f2eea2fa71354361f2881 (diff)
downloadpx4-nuttx-494dfe2ae6157348956b941eb7a1f57b66181a56.tar.gz
px4-nuttx-494dfe2ae6157348956b941eb7a1f57b66181a56.tar.bz2
px4-nuttx-494dfe2ae6157348956b941eb7a1f57b66181a56.zip
Rename adc_devinit() to board_adc_setup(). Add support to the boardctl() interface so that it can call board_adc_setup() on behalf of an application. Change apps/examples/adc to that is now calls boardctl() instead of adc_devinit() in order to initalize the ADC device.
Diffstat (limited to 'nuttx/configs/mbed')
-rw-r--r--nuttx/configs/mbed/src/lpc17_adc.c5
1 files changed, 3 insertions, 2 deletions
diff --git a/nuttx/configs/mbed/src/lpc17_adc.c b/nuttx/configs/mbed/src/lpc17_adc.c
index 0ae4423b4..7b0fe4826 100644
--- a/nuttx/configs/mbed/src/lpc17_adc.c
+++ b/nuttx/configs/mbed/src/lpc17_adc.c
@@ -49,6 +49,7 @@
#include <errno.h>
#include <debug.h>
+#include <nuttx/board.h>
#include <nuttx/analog/adc.h>
#include <arch/board/board.h>
@@ -77,7 +78,7 @@
************************************************************************************/
/************************************************************************************
- * Name: adc_devinit
+ * Name: board_adc_setup
*
* Description:
* All LPC17 architectures must provide the following interface to work with
@@ -85,7 +86,7 @@
*
************************************************************************************/
-int adc_devinit(void)
+int board_adc_setup(void)
{
static bool initialized = false;
struct adc_dev_s *adc;