diff options
author | Giovanni Di Sirio <gdisirio@gmail.com> | 2015-05-03 09:25:35 +0000 |
---|---|---|
committer | Giovanni Di Sirio <gdisirio@gmail.com> | 2015-05-03 09:25:35 +0000 |
commit | d3a7d7370c267d094edd047fc223ef575f257bae (patch) | |
tree | 2eccfd1e25299a2b03cdd607d4037603fc95bf27 /testhal/STM32/STM32L1xx | |
parent | abda86c0eae7567ea2290401a3252d7b2c487868 (diff) | |
download | ChibiOS-d3a7d7370c267d094edd047fc223ef575f257bae.tar.gz ChibiOS-d3a7d7370c267d094edd047fc223ef575f257bae.tar.bz2 ChibiOS-d3a7d7370c267d094edd047fc223ef575f257bae.zip |
DAC off by default.
git-svn-id: svn://svn.code.sf.net/p/chibios/svn/trunk@7945 35acf78f-673a-0410-8e92-d51de3d6d3f4
Diffstat (limited to 'testhal/STM32/STM32L1xx')
-rw-r--r-- | testhal/STM32/STM32L1xx/ADC/halconf.h | 2 | ||||
-rw-r--r-- | testhal/STM32/STM32L1xx/EXT/halconf.h | 2 | ||||
-rw-r--r-- | testhal/STM32/STM32L1xx/IRQ_STORM/halconf.h | 2 | ||||
-rw-r--r-- | testhal/STM32/STM32L1xx/PWM-ICU/halconf.h | 2 | ||||
-rw-r--r-- | testhal/STM32/STM32L1xx/SPI/halconf.h | 2 | ||||
-rw-r--r-- | testhal/STM32/STM32L1xx/UART/halconf.h | 2 |
6 files changed, 6 insertions, 6 deletions
diff --git a/testhal/STM32/STM32L1xx/ADC/halconf.h b/testhal/STM32/STM32L1xx/ADC/halconf.h index 6d34adbf5..d3f8bfef7 100644 --- a/testhal/STM32/STM32L1xx/ADC/halconf.h +++ b/testhal/STM32/STM32L1xx/ADC/halconf.h @@ -55,7 +55,7 @@ * @brief Enables the DAC subsystem.
*/
#if !defined(HAL_USE_DAC) || defined(__DOXYGEN__)
-#define HAL_USE_DAC TRUE
+#define HAL_USE_DAC FALSE
#endif
/**
diff --git a/testhal/STM32/STM32L1xx/EXT/halconf.h b/testhal/STM32/STM32L1xx/EXT/halconf.h index b9396d1b9..4f413ea78 100644 --- a/testhal/STM32/STM32L1xx/EXT/halconf.h +++ b/testhal/STM32/STM32L1xx/EXT/halconf.h @@ -62,7 +62,7 @@ * @brief Enables the DAC subsystem.
*/
#if !defined(HAL_USE_DAC) || defined(__DOXYGEN__)
-#define HAL_USE_DAC TRUE
+#define HAL_USE_DAC FALSE
#endif
/**
diff --git a/testhal/STM32/STM32L1xx/IRQ_STORM/halconf.h b/testhal/STM32/STM32L1xx/IRQ_STORM/halconf.h index f08f28d09..6d02ed7b5 100644 --- a/testhal/STM32/STM32L1xx/IRQ_STORM/halconf.h +++ b/testhal/STM32/STM32L1xx/IRQ_STORM/halconf.h @@ -62,7 +62,7 @@ * @brief Enables the DAC subsystem.
*/
#if !defined(HAL_USE_DAC) || defined(__DOXYGEN__)
-#define HAL_USE_DAC TRUE
+#define HAL_USE_DAC FALSE
#endif
/**
diff --git a/testhal/STM32/STM32L1xx/PWM-ICU/halconf.h b/testhal/STM32/STM32L1xx/PWM-ICU/halconf.h index cbc56f505..528645b69 100644 --- a/testhal/STM32/STM32L1xx/PWM-ICU/halconf.h +++ b/testhal/STM32/STM32L1xx/PWM-ICU/halconf.h @@ -62,7 +62,7 @@ * @brief Enables the DAC subsystem.
*/
#if !defined(HAL_USE_DAC) || defined(__DOXYGEN__)
-#define HAL_USE_DAC TRUE
+#define HAL_USE_DAC FALSE
#endif
/**
diff --git a/testhal/STM32/STM32L1xx/SPI/halconf.h b/testhal/STM32/STM32L1xx/SPI/halconf.h index 8e1f6e275..00840c771 100644 --- a/testhal/STM32/STM32L1xx/SPI/halconf.h +++ b/testhal/STM32/STM32L1xx/SPI/halconf.h @@ -62,7 +62,7 @@ * @brief Enables the DAC subsystem.
*/
#if !defined(HAL_USE_DAC) || defined(__DOXYGEN__)
-#define HAL_USE_DAC TRUE
+#define HAL_USE_DAC FALSE
#endif
/**
diff --git a/testhal/STM32/STM32L1xx/UART/halconf.h b/testhal/STM32/STM32L1xx/UART/halconf.h index a0ab6c216..fb49cfcdf 100644 --- a/testhal/STM32/STM32L1xx/UART/halconf.h +++ b/testhal/STM32/STM32L1xx/UART/halconf.h @@ -62,7 +62,7 @@ * @brief Enables the DAC subsystem.
*/
#if !defined(HAL_USE_DAC) || defined(__DOXYGEN__)
-#define HAL_USE_DAC TRUE
+#define HAL_USE_DAC FALSE
#endif
/**
|