bugfix for ipv6 netif setup

This commit is contained in:
Joseph Henry
2018-07-25 14:01:12 -07:00
parent ac1f0e32ca
commit 7be4edb36d
3 changed files with 77 additions and 38 deletions

View File

@@ -107,8 +107,6 @@ await the next callback from the core */
#define LWIP_MAX_GUARDED_RX_BUF_SZ 1024 // number of frame pointers that can be cached waiting for receipt into core
#define LWIP_FRAMES_HANDLED_PER_CORE_CALL 16 // How many frames are handled per call from core
#define LWIP_NETIF_STATUS_CALLBACK 0
typedef signed char err_t;
#define ND6_DISCOVERY_INTERVAL 1000

View File

@@ -87,9 +87,15 @@
*/
#include "lwip/debug.h"
//#define LWIP_IPV6_MLD 1
//#define LWIP_IPV6_AUTOCONFIG 1
//#define LWIP_ICMP6 1
//#define LWIP_IPV6_NUM_ADDRESSES 6
// IP Protocol version
#define LWIP_IPV4 1
#define LWIP_IPV6 1
#define LWIP_NETIF_STATUS_CALLBACK 1
#define LWIP_IPV4 1
#define LWIP_IPV6 1
// --- DEBUG ---