8 typedef uint16_t u16_t;
9 typedef uint32_t u32_t;
11 typedef int16_t s16_t;
12 typedef int32_t s32_t;
13 typedef uint32_t mem_ptr_t;
15 #define PACK_STRUCT_FIELD(x) x __attribute__((packed))
16 #define PACK_STRUCT_STRUCT __attribute__((packed))
17 #define PACK_STRUCT_BEGIN
18 #define PACK_STRUCT_END
20 #define BYTE_ORDER LITTLE_ENDIAN
26 #define LWIP_PLATFORM_BYTESWAP 1
27 #define LWIP_PLATFORM_HTONS(x) htons(x)
28 #define LWIP_PLATFORM_HTONL(x) htonl(x)
31 #define LWIP_PLATFORM_DIAG(x)
32 #define LWIP_PLATFORM_ASSERT(x)