summaryrefslogtreecommitdiff
path: root/nuttx/configs/stm3210e-eval/src/up_adc.c
diff options
context:
space:
mode:
authorpatacongo <patacongo@42af7a65-404d-4744-a932-0658087f49c3>2011-12-22 00:31:47 +0000
committerpatacongo <patacongo@42af7a65-404d-4744-a932-0658087f49c3>2011-12-22 00:31:47 +0000
commit0ef224f0edcdc24a123dd2f229256dac3a38c277 (patch)
treed0dc01b41249de6a68c5631669aa60b514cee23f /nuttx/configs/stm3210e-eval/src/up_adc.c
parent80f67779e93a19f4ead282f5fff0bd070ba93de8 (diff)
downloadpx4-nuttx-0ef224f0edcdc24a123dd2f229256dac3a38c277.tar.gz
px4-nuttx-0ef224f0edcdc24a123dd2f229256dac3a38c277.tar.bz2
px4-nuttx-0ef224f0edcdc24a123dd2f229256dac3a38c277.zip
STM32 ADC driver update
git-svn-id: svn://svn.code.sf.net/p/nuttx/code/trunk@4211 42af7a65-404d-4744-a932-0658087f49c3
Diffstat (limited to 'nuttx/configs/stm3210e-eval/src/up_adc.c')
-rw-r--r--nuttx/configs/stm3210e-eval/src/up_adc.c10
1 files changed, 4 insertions, 6 deletions
diff --git a/nuttx/configs/stm3210e-eval/src/up_adc.c b/nuttx/configs/stm3210e-eval/src/up_adc.c
index 8f2cfbd38..f84a88d58 100644
--- a/nuttx/configs/stm3210e-eval/src/up_adc.c
+++ b/nuttx/configs/stm3210e-eval/src/up_adc.c
@@ -82,13 +82,13 @@
* Private Data
************************************************************************************/
-/* Identifying number of each ADC channel: Variable Resistor , BNC_CN5 and BNC_CN3 */
+/* Identifying number of each ADC channel: Variable Resistor and BNC_CN5 */
-static const uint8_t g_chanlist[ADC_NCHANNELS] = {14, 10};
+static const uint8_t g_chanlist[ADC_NCHANNELS] = {14, 11};
/* Configurations of pins used byte each ADC channels */
-static const uint32_t g_pinlist[ADC_NCHANNELS] = {GPIO_ADC1_IN14 , GPIO_ADC1_IN10};
+static const uint32_t g_pinlist[ADC_NCHANNELS] = {GPIO_ADC1_IN14 , GPIO_ADC1_IN11};
/************************************************************************************
* Private Functions
@@ -114,13 +114,11 @@ int adc_devinit(void)
int ret;
int i;
- avdbg("Entry\n");
-
/* Configure the pins as analog inputs for the selected channels */
for(i = 0; i < ADC_NCHANNELS; i++)
{
- stm32_configgpio(g_chanlist[i]);
+ stm32_configgpio(g_pinlist[i]);
}
/* Call stm32_adcinitialize() to get an instance of the ADC interface */