diff options
author | gdisirio <gdisirio@35acf78f-673a-0410-8e92-d51de3d6d3f4> | 2012-12-27 11:31:57 +0000 |
---|---|---|
committer | gdisirio <gdisirio@35acf78f-673a-0410-8e92-d51de3d6d3f4> | 2012-12-27 11:31:57 +0000 |
commit | d2c0aea892777c860fa29e18eda06bd6c0694f48 (patch) | |
tree | 0d12400674b762f65ee63d9b7c58eaec0bca9bcc /testhal/STM32F3xx/ADC | |
parent | 1c4914bb0d7f7cf942cd5634d3f21e0c7a85a357 (diff) | |
download | ChibiOS-d2c0aea892777c860fa29e18eda06bd6c0694f48.tar.gz ChibiOS-d2c0aea892777c860fa29e18eda06bd6c0694f48.tar.bz2 ChibiOS-d2c0aea892777c860fa29e18eda06bd6c0694f48.zip |
git-svn-id: svn://svn.code.sf.net/p/chibios/svn/trunk@4977 35acf78f-673a-0410-8e92-d51de3d6d3f4
Diffstat (limited to 'testhal/STM32F3xx/ADC')
-rw-r--r-- | testhal/STM32F3xx/ADC/mcuconf.h | 20 |
1 files changed, 10 insertions, 10 deletions
diff --git a/testhal/STM32F3xx/ADC/mcuconf.h b/testhal/STM32F3xx/ADC/mcuconf.h index 6fbb66e33..0e1b37cff 100644 --- a/testhal/STM32F3xx/ADC/mcuconf.h +++ b/testhal/STM32F3xx/ADC/mcuconf.h @@ -70,16 +70,16 @@ /*
* ADC driver system settings.
*/
-#define STM32_ADC_USE_ADC1 FALSE
-#define STM32_ADC_USE_ADC3 FALSE
-#define STM32_ADC_ADC1_DMA_PRIORITY 2
-#define STM32_ADC_ADC3_DMA_PRIORITY 2
-#define STM32_ADC_ADC1_IRQ_PRIORITY 2
-#define STM32_ADC_ADC3_IRQ_PRIORITY 2
-#define STM32_ADC_ADC1_DMA_IRQ_PRIORITY 2
-#define STM32_ADC_ADC3_DMA_IRQ_PRIORITY 2
-#define STM32_ADC_ADC1_CLOCK_MODE ADC_CCR_CKMODE_AHB_DIV1
-#define STM32_ADC_ADC3_CLOCK_MODE ADC_CCR_CKMODE_AHB_DIV1
+#define STM32_ADC_USE_ADC1 TRUE
+#define STM32_ADC_USE_ADC3 TRUE
+#define STM32_ADC_ADC12_DMA_PRIORITY 2
+#define STM32_ADC_ADC34_DMA_PRIORITY 2
+#define STM32_ADC_ADC12_IRQ_PRIORITY 2
+#define STM32_ADC_ADC34_IRQ_PRIORITY 2
+#define STM32_ADC_ADC12_DMA_IRQ_PRIORITY 2
+#define STM32_ADC_ADC34_DMA_IRQ_PRIORITY 2
+#define STM32_ADC_ADC12_CLOCK_MODE ADC_CCR_CKMODE_AHB_DIV1
+#define STM32_ADC_ADC34_CLOCK_MODE ADC_CCR_CKMODE_AHB_DIV1
#define STM32_ADC_DUAL_MODE FALSE
/*
|