Measuring MLE SendAnnounce time #8662
-
Confirming my understanding
For example:
Question
Thank you for everyone's time. |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 2 replies
-
The
There isn't a network event that triggers it. Note, however, that the announce messages may be suppressed if there are a number of other neighbors sending the same message. You can find the configurations in src/core/config/announce_sender.h. |
Beta Was this translation helpful? Give feedback.
The
SendTo()
method simply schedules the packet for transmission and does not actually wait for the radio to complete transmission. If you want the most accurate time stamping, you'll probably want to do that in the radio driver itself. See theotPlatRadioTransmit
andotPlatRadioTxDone
platform APIs.There isn't a network event that triggers it. Note, however, that the announce messages may be suppressed…