diff options
author | edolomb <none@example.com> | 2019-01-17 15:19:20 +0000 |
---|---|---|
committer | edolomb <none@example.com> | 2019-01-17 15:19:20 +0000 |
commit | 29309f101a4828842c377ff11a3a59908aab05f2 (patch) | |
tree | f75aef8484bc3522621b128eb6bfeacd55ad0e47 /os/common/ports/ARM/compilers/GCC | |
parent | 696701cd6fe254a4cb2e3f748cacabe853d42a9e (diff) | |
download | ChibiOS-29309f101a4828842c377ff11a3a59908aab05f2.tar.gz ChibiOS-29309f101a4828842c377ff11a3a59908aab05f2.tar.bz2 ChibiOS-29309f101a4828842c377ff11a3a59908aab05f2.zip |
Updated SAMA drivers (still incomplete)
git-svn-id: svn://svn.code.sf.net/p/chibios/svn/trunk@12543 110e8d01-0319-4d1e-a829-52ad28d1bb01
Diffstat (limited to 'os/common/ports/ARM/compilers/GCC')
-rw-r--r-- | os/common/ports/ARM/compilers/GCC/chtypes.h | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/os/common/ports/ARM/compilers/GCC/chtypes.h b/os/common/ports/ARM/compilers/GCC/chtypes.h index 23c3b8e7b..048101666 100644 --- a/os/common/ports/ARM/compilers/GCC/chtypes.h +++ b/os/common/ports/ARM/compilers/GCC/chtypes.h @@ -33,6 +33,24 @@ #include <stdbool.h>
/**
+ * @name Common constants
+ */
+/**
+ * @brief Generic 'false' boolean constant.
+ */
+#if !defined(FALSE) || defined(__DOXYGEN__)
+#define FALSE 0
+#endif
+
+/**
+ * @brief Generic 'true' boolean constant.
+ */
+#if !defined(TRUE) || defined(__DOXYGEN__)
+#define TRUE 1
+#endif
+/** @} */
+
+/**
* @name Kernel types
* @{
*/
|