Working from-source IP stack

This commit is contained in:
Angus Gratton 2015-05-21 12:06:55 +10:00
parent e4bc8fab7a
commit df9e9bf9a4
4 changed files with 71 additions and 34 deletions

View file

@ -63,12 +63,12 @@ typedef int sys_prot_t;
/* Define (sn)printf formatters for these lwIP types */
#define X8_F "02x"
#define U16_F "hu"
#define S16_F "hd"
#define X16_F "hx"
#define U32_F "lu"
#define S32_F "ld"
#define X32_F "lx"
#define U16_F "u"
#define S16_F "d"
#define X16_F "x"
#define U32_F "u"
#define S32_F "d"
#define X32_F "x"
#define SZT_F U32_F
/* Compiler hints for packing structures */

View file

@ -38,6 +38,9 @@
#define EBUF_LWIP 1
#define ESP_TIMEWAIT_THRESHOLD 10000
// Uncomment this line, and set the debug options you want below, for IP stack debug output
//#define LWIP_DEBUG
/*
-----------------------------------------------
---------- Platform specific locking ----------