LWIP assert问题 unsent_oversize mismatch (pcb vs. last_unsent)
LWIP
问题:网络数据发送较快,程序进入assert语句,导致装置重启。
unsent_oversize mismatch (pcb vs. last_unsent)
Assertion: xxx in tcp_out.c
(0) assertion failed at function:
解决:
//#define TCP_OVERSIZE TCP_MSS
#define TCP_OVERSIZE 0
TCP_OVERSIZE:试图将待发送数据拼接到上一次的非全长包中,何时拼接由TCP_OVERSIZE的值确定。