完善资料让更多小伙伴认识你,还能领取20积分哦, 立即完善>
我用的是STM32F107VCT6的芯片
u8 *replay = "I got a message!n"; void APP_udp_server_init(void) { //创建控制块 if(pAppUdpSvrPCB == NULL) pAppUdpSvrPcb = udp_new(); /* Bind the upcb to the UDP_PORT port */ /* Using IP_ADDR_ANY allow the upcb to be used by any local interface */ udp_bind(pAppUdpSvrPcb, IP_ADDR_ANY, udplocalport); /* Set a receive callback for the upcb */ udp_recv(pAppUdpSvrPcb, APP_udp_callback, replay); //注册回调函数APP_udp_callback,每当接收到网络调试助手发来的信息就会执行回调函数 } //回调函数,功能是将I got a message!发回网络调试助手 void APP_udp_callback(void *arg, struct udp_pcb *upcb, struct pbuf *p, struct ip_addr *addr, u16_t port) { struct ip_addr destAddr = *addr; if(p != NULL) { /* Tell the client that we have accepted it */ memset(p->payload,0,p->len); memcpy(p->payload,arg,strlen(arg)); udp_sendto(upcb,p,&destAddr,port); /* Free the p buffer */ pbuf_free(p); udp_disconnect(upcb); } } 理想的结果应该是显示I got a message! 然而结果却为I (I和一个空格)。也就是说每次发送都只能显示两个字符 后来我在memset和memcpy中间也加了udp_sendto(upcb,p,&destAddr,port);,结果变成了,先输出一个空格,再输出I got a message!(如图1所示) 请各位大佬给我解释一下,出现这两种结果的原因,拜托了 |
|
相关推荐
1个回答
|
|
已经解决了哈哈,谢谢大***贵的时间
|
|
|
|
只有小组成员才能发言,加入小组>>
如何使用STM32+nrf24l01架构把有线USB设备无线化?
2543 浏览 7 评论
请问能利用51单片机和nRF24L01模块实现实时语音无线传输吗?
2331 浏览 5 评论
3155 浏览 3 评论
2801 浏览 8 评论
为什么ucosii上移植lwip后系统进入了HardFault_Handler?
2759 浏览 4 评论
请教各位大咖:有没有接收频率32M左右的芯片推荐的?先感谢啦!
607浏览 1评论
852浏览 0评论
965浏览 0评论
618浏览 0评论
445浏览 0评论
小黑屋| 手机版| Archiver| 电子发烧友 ( 湘ICP备2023018690号 )
GMT+8, 2024-11-21 23:55 , Processed in 1.092425 second(s), Total 78, Slave 61 queries .
Powered by 电子发烧友网
© 2015 bbs.elecfans.com
关注我们的微信
下载发烧友APP
电子发烧友观察
版权所有 © 湖南华秋数字科技有限公司
电子发烧友 (电路图) 湘公网安备 43011202000918 号 电信与信息服务业务经营许可证:合字B2-20210191 工商网监 湘ICP备2023018690号