openthread Data forwarding and receiving

One feature I want to implement now is: I have five 52833dk development boards. I want to use one of them to send a packet of data based on ip address protocol. The packet of data can be forwarded by thread network and finally can be received on the computer or mobile phone What should I do? Is there an example of something like that that I don't know how to do anymore?

Parents Reply
  • The Thread protocol does not specify any application layers. You can send UDP packets from the Thread node, but you need to configure the phone/PC to receive such packets. All you need on the Thread device is the IP address of the destination where you want to send the packets. Depending on how your network is configured, this can either be a global IPv6 address, or a IP6 translated version of a IPv4 address if you have NAT64 configured. You can also setup a CoAP server on the phone/PC and send packets from the CoAP client sample, but we do not have any examples of this setup.

Children
Related