8567|2

51

帖子

0

TA的资源

一粒金砂(中级)

楼主
 

[F7老人紧急呼救系统] LWIP netconn UDP client收发基础测试 [复制链接]

话不多说,直接上代码:

static void udp_thread(void const * argument)
{
    struct netconn *conn;
    err_t err;
    struct netbuf *buf, *buf_send;
    char *data, *payload_data;
    static ip_addr_t *addr;
    static unsigned short port;
    unsigned int payload_len;
        
          struct ip_addr ipaddr;


    IP4_ADDR(&ipaddr, 192,168,1,111);


    /* Create a new UDP connection handle */
    conn = netconn_new(NETCONN_UDP);
    if (conn!= NULL)
                {
        /* Bind to port 80 (HTTP) with default IP address */
        err = netconn_bind(conn, NULL, 80);


        if (err == ERR_OK)
                                {
                                          err = netconn_connect(conn, &ipaddr, 80);
                                       
                                          if(err == ERR_OK)
                                                {
                                                    printf("Connect server succeed ! \n");
                /* Prepare data */
                buf_send = netbuf_new();
                                                          payload_len = strlen("Hello server !");
                data = netbuf_alloc(buf_send, payload_len);
                memcpy (data, "Hello server !", payload_len);
                /* Send the packet */
                netconn_sendto(conn, buf_send, &ipaddr, 80);
                /* Free the buffer */
                netbuf_delete(buf_send);
                                                        
                                                          while(1)
                                                    {
                                                                                LCD_DbgLog("Wait for UDP data ...");
                                                                        
                    while(netconn_recv(conn, &buf) != ERR_OK);


                                                                                LCD_DbgLog(" [OK] ...\n");


                    /* Get destination ip address and port*/
                    addr = netbuf_fromaddr(buf);
                    port = netbuf_fromport(buf);


                    /* Get the payload and length */
                    payload_len = buf->p->len;
                    payload_data = buf->p->payload;


                    /* Prepare data */
                    buf_send = netbuf_new();
                    data = netbuf_alloc(buf_send, payload_len);
                    memcpy (data, payload_data, payload_len);


                    /* Send the packet */
                    netconn_sendto(conn, buf_send, addr, port);


                    /* Free the buffer */
                    netbuf_delete(buf_send);
                    netbuf_delete(buf);
                }
                                                }
                                                else
                                                {                                                
                                                                LCD_DbgLog("Connect server fail ! \n");
                                                }        
        }
    }
}




源码下载链接:
LwIP_HTTP_Server_Netconn_RTOS【UDP_Client】.zip (160.09 KB, 下载次数: 199)


此帖出自stm32/stm8论坛

最新回复

广播接收有障碍啊,学习借鉴一下  详情 回复 发表于 2017-8-17 22:48
点赞 关注(2)
 

回复
举报

1228

帖子

0

TA的资源

纯净的硅(高级)

沙发
 
大牛,求cubeMX工程参考一下,谢谢
此帖出自stm32/stm8论坛
 
个人签名

喝最烈的酒,..DIY最实用的东西

 

回复

11

帖子

0

TA的资源

一粒金砂(初级)

板凳
 
广播接收有障碍啊,学习借鉴一下
此帖出自stm32/stm8论坛
 
 

回复
您需要登录后才可以回帖 登录 | 注册

随便看看
查找数据手册?

EEWorld Datasheet 技术支持

相关文章 更多>>
关闭
站长推荐上一条 1/9 下一条

 
EEWorld订阅号

 
EEWorld服务号

 
汽车开发圈

About Us 关于我们 客户服务 联系方式 器件索引 网站地图 最新更新 手机版

站点相关: 国产芯 安防电子 汽车电子 手机便携 工业控制 家用电子 医疗电子 测试测量 网络通信 物联网

北京市海淀区中关村大街18号B座15层1530室 电话:(010)82350740 邮编:100190

电子工程世界版权所有 京B2-20211791 京ICP备10001474号-1 电信业务审批[2006]字第258号函 京公网安备 11010802033920号 Copyright © 2005-2025 EEWORLD.com.cn, Inc. All rights reserved
快速回复 返回顶部 返回列表