aboutsummaryrefslogtreecommitdiff
path: root/platforms/chibios/common/configs/halconf.h
diff options
context:
space:
mode:
Diffstat (limited to 'platforms/chibios/common/configs/halconf.h')
-rw-r--r--platforms/chibios/common/configs/halconf.h16
1 files changed, 8 insertions, 8 deletions
diff --git a/platforms/chibios/common/configs/halconf.h b/platforms/chibios/common/configs/halconf.h
index a9f2cf77b..880e7f97a 100644
--- a/platforms/chibios/common/configs/halconf.h
+++ b/platforms/chibios/common/configs/halconf.h
@@ -65,21 +65,21 @@
65 * @brief Enables the DAC subsystem. 65 * @brief Enables the DAC subsystem.
66 */ 66 */
67#if !defined(HAL_USE_DAC) || defined(__DOXYGEN__) 67#if !defined(HAL_USE_DAC) || defined(__DOXYGEN__)
68#define HAL_USE_DAC TRUE 68#define HAL_USE_DAC FALSE
69#endif 69#endif
70 70
71/** 71/**
72 * @brief Enables the GPT subsystem. 72 * @brief Enables the GPT subsystem.
73 */ 73 */
74#if !defined(HAL_USE_GPT) || defined(__DOXYGEN__) 74#if !defined(HAL_USE_GPT) || defined(__DOXYGEN__)
75#define HAL_USE_GPT TRUE 75#define HAL_USE_GPT FALSE
76#endif 76#endif
77 77
78/** 78/**
79 * @brief Enables the I2C subsystem. 79 * @brief Enables the I2C subsystem.
80 */ 80 */
81#if !defined(HAL_USE_I2C) || defined(__DOXYGEN__) 81#if !defined(HAL_USE_I2C) || defined(__DOXYGEN__)
82#define HAL_USE_I2C TRUE 82#define HAL_USE_I2C FALSE
83#endif 83#endif
84 84
85/** 85/**
@@ -114,7 +114,7 @@
114 * @brief Enables the PWM subsystem. 114 * @brief Enables the PWM subsystem.
115 */ 115 */
116#if !defined(HAL_USE_PWM) || defined(__DOXYGEN__) 116#if !defined(HAL_USE_PWM) || defined(__DOXYGEN__)
117#define HAL_USE_PWM TRUE 117#define HAL_USE_PWM FALSE
118#endif 118#endif
119 119
120/** 120/**
@@ -142,7 +142,7 @@
142 * @brief Enables the SERIAL over USB subsystem. 142 * @brief Enables the SERIAL over USB subsystem.
143 */ 143 */
144#if !defined(HAL_USE_SERIAL_USB) || defined(__DOXYGEN__) 144#if !defined(HAL_USE_SERIAL_USB) || defined(__DOXYGEN__)
145#define HAL_USE_SERIAL_USB TRUE 145#define HAL_USE_SERIAL_USB FALSE
146#endif 146#endif
147 147
148/** 148/**
@@ -156,7 +156,7 @@
156 * @brief Enables the SPI subsystem. 156 * @brief Enables the SPI subsystem.
157 */ 157 */
158#if !defined(HAL_USE_SPI) || defined(__DOXYGEN__) 158#if !defined(HAL_USE_SPI) || defined(__DOXYGEN__)
159#define HAL_USE_SPI TRUE 159#define HAL_USE_SPI FALSE
160#endif 160#endif
161 161
162/** 162/**
@@ -203,7 +203,7 @@
203 * @note Disabling this option saves both code and data space. 203 * @note Disabling this option saves both code and data space.
204 */ 204 */
205#if !defined(PAL_USE_CALLBACKS) || defined(__DOXYGEN__) 205#if !defined(PAL_USE_CALLBACKS) || defined(__DOXYGEN__)
206#define PAL_USE_CALLBACKS TRUE 206#define PAL_USE_CALLBACKS FALSE
207#endif 207#endif
208 208
209/** 209/**
@@ -211,7 +211,7 @@
211 * @note Disabling this option saves both code and data space. 211 * @note Disabling this option saves both code and data space.
212 */ 212 */
213#if !defined(PAL_USE_WAIT) || defined(__DOXYGEN__) 213#if !defined(PAL_USE_WAIT) || defined(__DOXYGEN__)
214#define PAL_USE_WAIT TRUE 214#define PAL_USE_WAIT FALSE
215#endif 215#endif
216 216
217/*===========================================================================*/ 217/*===========================================================================*/