00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020
00021
00022
00023
00024
00025
00026
00027
00028
00029
00030
00031
00032
00033
00034
00035
00036
00037
00038
00039
00040
00041
00042
00043
00044 #ifndef FIP_COMPILER_H_
00045 #define FIP_COMPILER_H_
00046
00047 #ifdef DOXYGEN
00048
00049
00050
00051 #define _PACKSTART
00052
00053
00054
00055 #define _PACKEND
00056
00057
00058
00059 #define _PS
00060
00061
00062
00063
00064
00065 #define PRINTCONST(x)
00066
00067
00068
00069
00070 #define PRINTF
00071
00072 #elif __AVR__
00073
00074 #define _PACKSTART
00075 #define _PACKEND
00076 #define _PS
00077
00078 #include <avr/pgmspace.h>
00079 #define PRINTCONST(x) printf_P(PSTR("%S"), PSTR(x))
00080 #define PRINTF printf
00081
00082 #else
00083
00084 #define _PACKSTART _Pragma("pack(push,1)")
00085 #define _PACKEND _Pragma("pack(pop)")
00086 #define _PS
00087
00088 #define PRINTCONST printf
00089 #define PRINTF printf
00090 #endif
00091
00092 #ifdef _SIM_
00093 #include <curses.h>
00094 extern WINDOW * consolepad;
00095 #undef PRINTCONST
00096 #undef PRINTF
00097 #undef printf
00098 extern int g_cursesRedirectPrintf;
00099 #define PRINTCONST(...) g_cursesRedirectPrintf?wprintw(consolepad, __VA_ARGS__):printf(__VA_ARGS__)
00100 #define PRINTF(...) g_cursesRedirectPrintf?wprintw(consolepad, __VA_ARGS__):printf(__VA_ARGS__)
00101 #define printf(...) g_cursesRedirectPrintf?wprintw(consolepad, __VA_ARGS__):printf(__VA_ARGS__)
00102
00103 #endif
00104
00105 #define MIN(a,b) ((a)>(b)?(b):(a))
00106
00107
00108 #define fip_memcpy memcpy
00109
00110 #define fip_memcpy_ucharLen memcpy
00111
00112 #define fip_ip6addr_cpy(dest, src) fip_memcpy_ucharLen((unsigned char *)(dest), (unsigned char *)(src), 16)
00113
00114
00115 #define fip_toUint16(msb, lsb) ((uint16_t)((lsb) | ((uint16_t)(msb) << 8)))
00116
00117 #define fip_Uint16_getLSB(x) ((uint8_t)(x))
00118
00119 #define fip_Uint16_getMSB(x) ((uint8_t)((uint16_t)(x)>>8))
00120
00121 #define fip_Uint32_getLSB0(x) ((uint8_t)(x))
00122 #define fip_Uint32_getLSB1(x) ((uint8_t)((x)>>8))
00123 #define fip_Uint32_getLSB2(x) ((uint8_t)((x)>>16))
00124 #define fip_Uint32_getLSB3(x) ((uint8_t)((x)>>24))
00125
00126 #define fip_toUint32(lsb3, lsb2, lsb1, lsb0) (((uint32_t)(lsb0)) | ((uint32_t)(lsb1) << 8) | ((uint32_t)(lsb2) << 16) | ((uint32_t)(lsb3) << 24))
00127
00128 #define fip_ntoh16(u16) fip_toUint16(fip_Uint16_getLSB(u16), fip_Uint16_getMSB(u16))
00129 #define fip_hton16(u16) fip_ntoh16(u16)
00130 #define fip_ntoh32(u32) fip_toUint32(fip_Uint32_getLSB0(u32), fip_Uint32_getLSB1(u32), fip_Uint32_getLSB2(u32), fip_Uint32_getLSB3(u32))
00131 #define fip_hton32(u32) fip_ntoh32(u32)
00132
00133
00134 #define fip_padUpTo4Byte(len) {len += 3; len &= ~3;}
00135
00136 #define fip_padUpTo8Byte(len) {len += 7; len &= ~7;}
00137
00138 #define fip_padDownTo4Byte(len) {len &= ~3;}
00139
00140 #define fip_padDownTo8Byte(len) {len &= ~7;}
00141
00142 #define fip_isNot4BytePadded(len) (len & 0x03)
00143 #define fip_isNot8BytePadded(len) (len & 0x07)
00144
00145 #endif //FIP_COMPILER_H_
00146
00147
00148