diff options
author | Clyne Sullivan <clyne@bitgloo.com> | 2020-10-30 11:16:52 -0400 |
---|---|---|
committer | Clyne Sullivan <clyne@bitgloo.com> | 2020-10-30 11:16:52 -0400 |
commit | 3113d96497853af196fa63a987e8c3ff550209c8 (patch) | |
tree | 075bd3b4a5106d5f17842b9bed2529afcc771b5d /cfg/halconf.h | |
parent | 1b5ca39ba78010bd4ae097982fe71ec609b4937f (diff) |
keep target as L476; minimize RAM usage
Diffstat (limited to 'cfg/halconf.h')
-rw-r--r-- | cfg/halconf.h | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/cfg/halconf.h b/cfg/halconf.h index bb6dd3a..24c6fde 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
/*===========================================================================*/
@@ -290,7 +290,7 @@ * @note Disabling this option saves both code and data space.
*/
#if !defined(DAC_USE_WAIT) || defined(__DOXYGEN__)
-#define DAC_USE_WAIT TRUE
+#define DAC_USE_WAIT FALSE
#endif
/**
@@ -298,7 +298,7 @@ * @note Disabling this option saves both code and data space.
*/
#if !defined(DAC_USE_MUTUAL_EXCLUSION) || defined(__DOXYGEN__)
-#define DAC_USE_MUTUAL_EXCLUSION TRUE
+#define DAC_USE_MUTUAL_EXCLUSION FALSE
#endif
/*===========================================================================*/
|