OpenThread Diagnostics Module Reference

The OpenThread diagnostics module is a tool for debugging platform hardware manually, and it will also be used during manufacturing process, to verify platform hardware performance.

The diagnostics module supports common diagnostics features that are listed below, and it also provides a mechanism for expanding platform specific diagnostics features.

Common Diagnostics Command List

diag

Show diagnostics mode status.

> diag
diagnostics mode is disabled

diag start

Start diagnostics mode.

> diag start
start diagnostics mode
status 0x00

diag channel

Get the IEEE 802.15.4 Channel value for diagnostics module.

> diag channel
channel: 11

diag channel <channel>

Set the IEEE 802.15.4 Channel value for diagnostics module.

> diag channel 11
set channel to 11
status 0x00

diag power

Get the tx power value(dBm) for diagnostics module.

> diag power
tx power: -10 dBm

diag power <power>

Set the tx power value(dBm) for diagnostics module.

> diag power -10
set tx power to -10 dBm
status 0x00

diag send <packets> <length>

Transmit a fixed number of packets with fixed length.

> diag send 20 100
sending 0x14 packet(s), length 0x64
status 0x00

diag repeat <delay> <length>

Transmit packets repeatedly with a fixed interval.

> diag repeat 100 100
sending packets of length 0x64 at the delay of 0x64 ms
status 0x00

diag repeat stop

Stop repeated packet transmission.

> diag repeat stop
repeated packet transmission is stopped
status 0x00

diag sleep

Enter radio sleep mode.

> diag sleep
sleeping now...

diag stats

Print statistics during diagnostics mode.

> diag stats
received packets: 10
sent packets: 10
first received packet: rssi=-65, lqi=101

diag stop

Stop diagnostics mode and print statistics.

> diag stop
received packets: 10
sent packets: 10
first received packet: rssi=-65, lqi=101

stop diagnostics mode
status 0x00