| #include <stdint.h> |
| |
| typedef uint8_t u8_t; |
| typedef uint16_t u16_t; |
| typedef uint32_t u32_t; |
| typedef uint64_t u64_t; |
| |
| typedef int8_t s8_t; |
| typedef int16_t s16_t; |
| typedef int32_t s32_t; |
| typedef int64_t s64_t; |
| |
| typedef uintptr_t mem_ptr_t; |
| |
| |
| #define U16_F "hu" |
| #define S16_F "d" |
| #define X16_F "hx" |
| #define U32_F "u" |
| #define S32_F "d" |
| #define X32_F "x" |
| #define SZT_F "uz" |
| |
| |
| // BYTE_ORDER might be defined by the architecture |
| #ifndef BYTE_ORDER |
| #if defined(__BYTE_ORDER__) |
| # define BYTE_ORDER __BYTE_ORDER__ |
| #elif defined(__BIG_ENDIAN) |
| # define BYTE_ORDER BIG_ENDIAN |
| #elif defined(__LITTLE_ENDIAN) |
| # define BYTE_ORDER LITTLE_ENDIAN |
| #else |
| # error Unable to detemine system endianess |
| #endif |
| #endif |
| |
| |
| #define LWIP_CHKSUM_ALGORITHM 2 |
| |
| |
| //#define PACK_STRUCT_FIELD(x) x __attribute__((packed)) |
| #define PACK_STRUCT_STRUCT __attribute__((packed)) |
| #define PACK_STRUCT_BEGIN |
| #define PACK_STRUCT_END |
| |
| |
| #if 0 |
| #define LWIP_PLATFORM_BYTESWAP 1 |
| #define LWIP_PLATFORM_HTONS(x) ( (((u16_t)(x))>>8) | (((x)&0xFF)<<8) ) |
| #define LWIP_PLATFORM_HTONL(x) ( (((u32_t)(x))>>24) | (((x)&0xFF0000)>>8) \ |
| | (((x)&0xFF00)<<8) | (((x)&0xFF)<<24) ) |
| #endif |
| |
| |
| #include <stdio.h> |
| #include <stdlib.h> |
| /* Plaform specific diagnostic output */ |
| #define LWIP_PLATFORM_DIAG(x) \ |
| do { \ |
| printf x; \ |
| fflush(stdout); \ |
| } while(0) |
| |
| #define LWIP_PLATFORM_ASSERT(x) \ |
| do { \ |
| printf("Assertion \"%s\" failed at line %d in %s\n", \ |
| x, __LINE__, __FILE__); \ |
| fflush(stdout); \ |
| abort(); \ |
| } while(0) |
| |
| |