diff options
author | Clyne Sullivan <clyne@bitgloo.com> | 2021-01-23 14:25:04 -0500 |
---|---|---|
committer | Clyne Sullivan <clyne@bitgloo.com> | 2021-01-23 14:25:04 -0500 |
commit | ec2e1fd5c6271bdf45ce22b3bb5cd3b690d92d5b (patch) | |
tree | b00b4f56132b743a64d61dc4652dc1d88b0853fd /cfg/halconf.h | |
parent | 716be4fc87412541fb1305c8592245a36104b584 (diff) |
increase signal buffers; fix oversample
Diffstat (limited to 'cfg/halconf.h')
-rw-r--r-- | cfg/halconf.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/cfg/halconf.h b/cfg/halconf.h index 1c77c25..24c6fde 100644 --- a/cfg/halconf.h +++ b/cfg/halconf.h @@ -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
/*===========================================================================*/
|