diff options
author | barthess <barthess@yandex.ru> | 2015-10-14 17:46:40 +0300 |
---|---|---|
committer | barthess <barthess@yandex.ru> | 2015-10-14 17:46:40 +0300 |
commit | a2f9bc469a30a16b125d7f1a01f9bd2fbfc7eeac (patch) | |
tree | d3b55196a18b494f91352470cbd4f0f879d502c6 /os/hal/include | |
parent | 9345056eac6fe4bb9ef78ce20295c07ca27685a4 (diff) | |
download | ChibiOS-Contrib-a2f9bc469a30a16b125d7f1a01f9bd2fbfc7eeac.tar.gz ChibiOS-Contrib-a2f9bc469a30a16b125d7f1a01f9bd2fbfc7eeac.tar.bz2 ChibiOS-Contrib-a2f9bc469a30a16b125d7f1a01f9bd2fbfc7eeac.zip |
FSMC code cleanup
Diffstat (limited to 'os/hal/include')
-rw-r--r-- | os/hal/include/eicu.h | 2 | ||||
-rw-r--r-- | os/hal/include/nand.h | 2 | ||||
-rw-r--r-- | os/hal/include/onewire.h | 2 |
3 files changed, 3 insertions, 3 deletions
diff --git a/os/hal/include/eicu.h b/os/hal/include/eicu.h index a4fb342..d9e08de 100644 --- a/os/hal/include/eicu.h +++ b/os/hal/include/eicu.h @@ -25,7 +25,7 @@ #ifndef _EICU_H_ #define _EICU_H_ -#if HAL_USE_EICU || defined(__DOXYGEN__) +#if (HAL_USE_EICU == TRUE) || defined(__DOXYGEN__) /*===========================================================================*/ /* Driver constants. */ diff --git a/os/hal/include/nand.h b/os/hal/include/nand.h index a1d2f86..ffd5de7 100644 --- a/os/hal/include/nand.h +++ b/os/hal/include/nand.h @@ -25,7 +25,7 @@ #ifndef _NAND_H_ #define _NAND_H_ -#if HAL_USE_NAND || defined(__DOXYGEN__) +#if (HAL_USE_NAND == TRUE) || defined(__DOXYGEN__) /*===========================================================================*/ /* Driver constants. */ diff --git a/os/hal/include/onewire.h b/os/hal/include/onewire.h index a2760e6..fac0b54 100644 --- a/os/hal/include/onewire.h +++ b/os/hal/include/onewire.h @@ -25,7 +25,7 @@ #ifndef _ONEWIRE_H_ #define _ONEWIRE_H_ -#if HAL_USE_ONEWIRE || defined(__DOXYGEN__) +#if (HAL_USE_ONEWIRE == TRUE) || defined(__DOXYGEN__) /*===========================================================================*/ /* Driver constants. */ |