Hi,
How can I use anycast address in my project? I try send message for leader. Thank you.
Hi,
How can I use anycast address in my project? I try send message for leader. Thank you.
message was successfuly sended but when I use space sniffer i did not see this message.
err_code = otIp6AddressFromString((char *)"fc00", (otIp6Address *)remote_device.addr);
ASSERT(err_code == OT_ERROR_NONE);
You are aware that this funtion, otIp6AddressFromString() doesn't actually send any messages, right? It will convert a "human readable" address to a binary representation of that address:
https://openthread.io/reference/group/api-ip6#otip6addressfromstring
Perhaps you should try to use otIp6Send()?
BR,
Edvin
Sure, I send message a few lines down
Perhaps you can show me how?
Do you have any project where I can easily replicate your issue with a couple of DKs?