发布时间:2013-03-19 15:41:03
Lwip是通过pcb控制块发送数据包的,类似于文件描述符fd.我用stm32_wifi模块做服务器,接收电脑的连接。问题:我必须等到电脑给我的模块发送数据时,调用的回调函数里面给电脑发送数据。不能随时随地的发。解决办法,上代码,打字真麻烦呀主,要红色部分struct tcp_pcb *pcb_uart2;//全局变量static err_tserver_a.........【阅读全文】
发布时间:2013-03-06 19:49:22
在编译stm32_wifi工程是老是出现代码过大的情况后来发现虽然我是进行过keil破解,但实际上我只是破解了C51,而对于ARM没有进行破解,所以会出现代码过大编译出错的问题。......【阅读全文】
发布时间:2013-03-04 20:19:52
int add(a, b)int a;int b;{return a + b;}是C语言的一种古老定义法与int add(int a, int b)类似......【阅读全文】
发布时间:2013-02-21 16:54:34
#include<stdio.h>#include<string.h>int main(){char temp[]="123";printf("sizeof=%d\n",sizeof(temp));//返回4printf("strlen=%d\n",strlen(temp));//返回3return 0;}......【阅读全文】