#ifndef _OS_Type_H__ #define _OS_Type_H__ #include #include #include #include #include #include #ifndef TRUE #define TRUE 1 #endif #ifndef FALSE #define FALSE 0 #endif typedef uint8_t u8; typedef uint16_t u16; typedef uint32_t u24; typedef uint32_t u32; typedef uint64_t u64; typedef int8_t s8; typedef int16_t s16; typedef int32_t s24; typedef int32_t s32; typedef int64_t s64; typedef signed char int8; typedef signed short int16; typedef signed int int32; typedef unsigned char uint8; typedef unsigned short uint16; typedef unsigned int uint32; extern void *pvPortMalloc( size_t xWantedSize ); #define os_alloc pvPortMalloc extern void vPortFree(void *); #define os_free vPortFree #endif /* _OS_Type_H__ */