|
@@ -58,6 +58,7 @@ extern "C" {
|
|
|
(RT_SUBVERSION * 100) + RT_REVISION)
|
|
|
|
|
|
/* RT-Thread basic data type definitions */
|
|
|
+#ifndef RT_USING_ARCH_DATA_TYPE
|
|
|
typedef signed char rt_int8_t; /**< 8bit integer type */
|
|
|
typedef signed short rt_int16_t; /**< 16bit integer type */
|
|
|
typedef signed int rt_int32_t; /**< 32bit integer type */
|
|
@@ -72,6 +73,7 @@ typedef unsigned long rt_uint64_t; /**< 64bit unsigned inte
|
|
|
typedef signed long long rt_int64_t; /**< 64bit integer type */
|
|
|
typedef unsigned long long rt_uint64_t; /**< 64bit unsigned integer type */
|
|
|
#endif
|
|
|
+#endif
|
|
|
|
|
|
typedef int rt_bool_t; /**< boolean type */
|
|
|
typedef long rt_base_t; /**< Nbit CPU related date type */
|