定义了LWIP_DEBUG宏后,在IAR工具下编译,出现 expected a ")"等等很多这样的错误.错误源是嵌入到程序中的调试宏LWIP_DEBUG(UDP_DEBUG | DBG_TRACE | DBG_STATE,
("udp_bind: bound to %"U16_F".%"U16_F".%"U16_F".%"U16_F", port %"U16_F"\n",
(u16_t)(ntohl(pcb->local_ip.addr) >> 24 & 0xff),
(u16_t)(ntohl(pcb->local_ip.addr) >> 16 & 0xff),
(u16_t)(ntohl(pcb->local_ip.addr) >> 8 & 0xff),
(u16_t)(ntohl(pcb->local_ip.addr) & 0xff), pcb->local_port));等
在lwip中的设置添加如下:
在debug.h中添加了如下代码
extern void USART2_Printf (char * format,...)
#define LWIP_DEBUG
#define LWIP_PLATFORM_DIAG(x) USART2_Printf x
我怀疑宏有问题,不知哪位大侠遇到过希望得到解答,万分感谢! |