diff options
Diffstat (limited to 'cfg')
-rw-r--r-- | cfg/halconf.h | 10 | ||||
-rw-r--r-- | cfg/mcuconf.h | 2 |
2 files changed, 6 insertions, 6 deletions
diff --git a/cfg/halconf.h b/cfg/halconf.h index 4d6ea7e..fe4c478 100644 --- a/cfg/halconf.h +++ b/cfg/halconf.h @@ -142,7 +142,7 @@ * @brief Enables the SERIAL subsystem.
*/
#if !defined(HAL_USE_SERIAL) || defined(__DOXYGEN__)
-#define HAL_USE_SERIAL TRUE
+#define HAL_USE_SERIAL FALSE
#endif
/**
@@ -230,7 +230,7 @@ * @note Disabling this option saves both code and data space.
*/
#if !defined(ADC_USE_WAIT) || defined(__DOXYGEN__)
-#define ADC_USE_WAIT TRUE
+#define ADC_USE_WAIT FALSE
#endif
/**
@@ -238,7 +238,7 @@ * @note Disabling this option saves both code and data space.
*/
#if !defined(ADC_USE_MUTUAL_EXCLUSION) || defined(__DOXYGEN__)
-#define ADC_USE_MUTUAL_EXCLUSION TRUE
+#define ADC_USE_MUTUAL_EXCLUSION FALSE
#endif
/*===========================================================================*/
@@ -447,7 +447,7 @@ * @note Disabling this option saves both code and data space.
*/
#if !defined(SPI_USE_WAIT) || defined(__DOXYGEN__)
-#define SPI_USE_WAIT TRUE
+#define SPI_USE_WAIT FALSE
#endif
/**
@@ -463,7 +463,7 @@ * @note Disabling this option saves both code and data space.
*/
#if !defined(SPI_USE_MUTUAL_EXCLUSION) || defined(__DOXYGEN__)
-#define SPI_USE_MUTUAL_EXCLUSION TRUE
+#define SPI_USE_MUTUAL_EXCLUSION FALSE
#endif
/**
diff --git a/cfg/mcuconf.h b/cfg/mcuconf.h index ccb4a6f..f02fe10 100644 --- a/cfg/mcuconf.h +++ b/cfg/mcuconf.h @@ -131,7 +131,7 @@ * SERIAL driver system settings.
*/
#define STM32_SERIAL_USE_USART2 FALSE
-#define STM32_SERIAL_USE_LPUART1 TRUE
+#define STM32_SERIAL_USE_LPUART1 FALSE
/*
* SPI driver system settings.
|