diff options
-rw-r--r-- | os/hal/osal/nil/osal.h | 2 | ||||
-rw-r--r-- | os/hal/osal/os-less/ARMCMx/osal.h | 2 | ||||
-rw-r--r-- | os/hal/osal/rt/osal.h | 2 | ||||
-rw-r--r-- | os/hal/templates/osal/osal.h | 2 |
4 files changed, 4 insertions, 4 deletions
diff --git a/os/hal/osal/nil/osal.h b/os/hal/osal/nil/osal.h index 68dacc4c6..9fd0b4192 100644 --- a/os/hal/osal/nil/osal.h +++ b/os/hal/osal/nil/osal.h @@ -48,7 +48,7 @@ #endif
#if !defined(TRUE) || defined(__DOXYGEN__)
-#define TRUE (!FALSE)
+#define TRUE 1
#endif
#define OSAL_SUCCESS false
diff --git a/os/hal/osal/os-less/ARMCMx/osal.h b/os/hal/osal/os-less/ARMCMx/osal.h index 891944543..1bf98ab32 100644 --- a/os/hal/osal/os-less/ARMCMx/osal.h +++ b/os/hal/osal/os-less/ARMCMx/osal.h @@ -46,7 +46,7 @@ #endif
#if !defined(TRUE) || defined(__DOXYGEN__)
-#define TRUE (!FALSE)
+#define TRUE 1
#endif
#define OSAL_SUCCESS false
diff --git a/os/hal/osal/rt/osal.h b/os/hal/osal/rt/osal.h index d0ffa5aed..75dc19c45 100644 --- a/os/hal/osal/rt/osal.h +++ b/os/hal/osal/rt/osal.h @@ -44,7 +44,7 @@ #endif
#if !defined(TRUE) || defined(__DOXYGEN__)
-#define TRUE (!FALSE)
+#define TRUE 1
#endif
#define OSAL_SUCCESS false
diff --git a/os/hal/templates/osal/osal.h b/os/hal/templates/osal/osal.h index a9696019e..bbaaf69df 100644 --- a/os/hal/templates/osal/osal.h +++ b/os/hal/templates/osal/osal.h @@ -42,7 +42,7 @@ #endif
#if !defined(TRUE) || defined(__DOXYGEN__)
-#define TRUE (!FALSE)
+#define TRUE 1
#endif
#define OSAL_SUCCESS false
|