This thread has been locked.

If you have a related question, please click the "Ask a related question" button in the top right corner. The newly created question will be automatically linked to this question.

CC3200 Serial WiFI



如题,本人使用CC320官方开发板和官方例程的SerialWiFi例程。板子通过路由器连接到笔记本上的TCP server之后,控制板子处于local control mode,然后使用send命令向TCP server发送字符串。调试发现,在(serial_wifi.c)ParseSendString()函数内部,g_ucUARTBuffer里面成功出现发送的字符串并将指针赋给了g_pcIp,但是经过IP  handling这段代码后,g_pcIp指向了字符‘@’,导致g_pcData最后从g_pcIp获取的数据也是‘@’,最终发送到TCP server上的全是字符‘@’,但是屏蔽掉IP  handling这部分代码后,发送和接收均正常。请问这是怎么回事呢?谢谢。