diff options
Diffstat (limited to 'os/hal/templates/pal_lld.h')
-rw-r--r-- | os/hal/templates/pal_lld.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/os/hal/templates/pal_lld.h b/os/hal/templates/pal_lld.h index dd04b869f..71a85d1d9 100644 --- a/os/hal/templates/pal_lld.h +++ b/os/hal/templates/pal_lld.h @@ -25,7 +25,7 @@ #ifndef _PAL_LLD_H_
#define _PAL_LLD_H_
-#if HAL_USE_PAL || defined(__DOXYGEN__)
+#if (HAL_USE_PAL == TRUE) || defined(__DOXYGEN__)
/*===========================================================================*/
/* Unsupported modes and specific modes */
@@ -375,7 +375,7 @@ extern "C" { }
#endif
-#endif /* HAL_USE_PAL */
+#endif /* HAL_USE_PAL == TRUE */
#endif /* _PAL_LLD_H_ */
|