From 275f6925ef31d80a6ad54e311d6c8c6403c19d49 Mon Sep 17 00:00:00 2001 From: erikkaashoek Date: Fri, 27 Nov 2020 15:40:28 +0100 Subject: [PATCH] Remove unsued part --- halconf.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/halconf.h b/halconf.h index 1b1dd37..01ffd12 100644 --- a/halconf.h +++ b/halconf.h @@ -80,14 +80,14 @@ * @brief Enables the I2C subsystem. */ #if !defined(HAL_USE_I2C) || defined(__DOXYGEN__) -#define HAL_USE_I2C TRUE +#define HAL_USE_I2C FALSE #endif /** * @brief Enables the I2S subsystem. */ #if !defined(HAL_USE_I2S) || defined(__DOXYGEN__) -#define HAL_USE_I2S TRUE +#define HAL_USE_I2S FALSE #endif /** @@ -213,7 +213,7 @@ * @brief Enables the mutual exclusion APIs on the I2C bus. */ #if !defined(I2C_USE_MUTUAL_EXCLUSION) || defined(__DOXYGEN__) -#define I2C_USE_MUTUAL_EXCLUSION TRUE +#define I2C_USE_MUTUAL_EXCLUSION FALSE #endif /*===========================================================================*/