diff options
author | gdisirio <gdisirio@35acf78f-673a-0410-8e92-d51de3d6d3f4> | 2012-08-21 16:09:14 +0000 |
---|---|---|
committer | gdisirio <gdisirio@35acf78f-673a-0410-8e92-d51de3d6d3f4> | 2012-08-21 16:09:14 +0000 |
commit | 35cae2a2900298061c197a19e0b6eace8eaa9312 (patch) | |
tree | 839366768dd7adc1a6687818cd59a76c55956359 /os/hal/platforms/STM32F2xx | |
parent | 79ec800cb608672f38f013ed8302aa6ad72016d0 (diff) | |
download | ChibiOS-35cae2a2900298061c197a19e0b6eace8eaa9312.tar.gz ChibiOS-35cae2a2900298061c197a19e0b6eace8eaa9312.tar.bz2 ChibiOS-35cae2a2900298061c197a19e0b6eace8eaa9312.zip |
git-svn-id: svn://svn.code.sf.net/p/chibios/svn/trunk@4607 35acf78f-673a-0410-8e92-d51de3d6d3f4
Diffstat (limited to 'os/hal/platforms/STM32F2xx')
-rw-r--r-- | os/hal/platforms/STM32F2xx/adc_lld.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/os/hal/platforms/STM32F2xx/adc_lld.h b/os/hal/platforms/STM32F2xx/adc_lld.h index fe30a8196..135f3ce72 100644 --- a/os/hal/platforms/STM32F2xx/adc_lld.h +++ b/os/hal/platforms/STM32F2xx/adc_lld.h @@ -134,7 +134,7 @@ * @note The default is @p TRUE.
*/
#if !defined(STM32_ADC_USE_ADC1) || defined(__DOXYGEN__)
-#define STM32_ADC_USE_ADC1 TRUE
+#define STM32_ADC_USE_ADC1 FALSE
#endif
/**
@@ -143,7 +143,7 @@ * @note The default is @p TRUE.
*/
#if !defined(STM32_ADC_USE_ADC2) || defined(__DOXYGEN__)
-#define STM32_ADC_USE_ADC2 TRUE
+#define STM32_ADC_USE_ADC2 FALSE
#endif
/**
@@ -152,7 +152,7 @@ * @note The default is @p TRUE.
*/
#if !defined(STM32_ADC_USE_ADC3) || defined(__DOXYGEN__)
-#define STM32_ADC_USE_ADC3 TRUE
+#define STM32_ADC_USE_ADC3 FALSE
#endif
/**
|