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.

[参考译文] RM57L843:使用 LwIP 堆栈的 UDP 广播

Guru**** 1785650 points
请注意,本文内容源自机器翻译,可能存在语法或其它翻译错误,仅供参考。如需获取准确内容,请参阅链接中的英语原文或自行翻译。

https://e2e.ti.com/support/microcontrollers/arm-based-microcontrollers-group/arm-based-microcontrollers/f/arm-based-microcontrollers-forum/973038/rm57l843-udp-broadcasting-using-lwip-stack

器件型号:RM57L843

您好!

我想使用 UDP 协议进行使用 LwIP 协议栈的以太网通信、并希望将控制器与客户端应用进行通信。

我已为单个目标 IP (单个客户端应用)配置 UDP 连接。

现在、有几个具有不同 IP 的应用程序、因此每次我需要在 CCS 工程中更改目标 IP。

在项目中是否有任何方式使用 UDP 广播? 这样我就不需要每次都更改 IP。

有一些 UDP 广播链接、我尝试了这种方式、但对我来说不起作用。

如果有人对此有任何想法、请帮助我。

谢谢

Pratik  

  • 请注意,本文内容源自机器翻译,可能存在语法或其它翻译错误,仅供参考。如需获取准确内容,请参阅链接中的英语原文或自行翻译。

    您好!

    为了向局域网中的所有计算机发送 UDP 数据报,需要将其发送到称为广播地址的特殊地址。  lwip 中使用的广播地址定义为 IPADDR_broadcast。  

    是否使用原始 UDP API?  

  • 请注意,本文内容源自机器翻译,可能存在语法或其它翻译错误,仅供参考。如需获取准确内容,请参阅链接中的英语原文或自行翻译。

    udp_sendto (PCB、pBuf、IP_ADDR_broadcast、1234);