Home
last modified time | relevance | path

Searched refs:TLVs (Results 1 – 5 of 5) sorted by relevance

/openthread-latest/src/cli/
DREADME_DATASET.md369 Print Active Operational Dataset as hex-encoded TLVs.
498 Usage: `dataset init <active|new|pending|tlvs <hex-encoded TLVs>>`
514 Use the `tlvs` option to initialize the dataset buffer from a string of hex-encoded TLVs:
644 Print Pending Operational Dataset as hex-encoded TLVs.
728 Set the Active Operational Dataset using hex-encoded TLVs.
735 Set the Pending Operational Dataset using hex-encoded TLVs.
746 Convert the Operational Dataset to hex-encoded TLVs.
DREADME_COMMISSIONER.md157 … [sessionid <sessionid>] [steeringdata <steeringdata>] [joinerudpport <joinerudpport>] [-x <TLVs>]`
DREADME_NETDATA.md425 Print Network Data received from the Leader as hex-encoded TLVs.
444 Print local Network Data to sync with Leader as hex-encoded TLVs.
/openthread-latest/tools/harness-thci/
DOpenThread_WpanCtl.py2172 …EncryptedPacket.TLVs = PlatformPackets.read(EncryptedPacket.Type, payload) if payload != [] else []
2255 def MGMT_ACTIVE_GET(self, Addr='', TLVs=[]): argument
2267 if len(TLVs) != 0:
2268 tlvs = ''.join('%02x' % tlv for tlv in TLVs)
2455 def MGMT_PENDING_GET(self, Addr='', TLVs=[]): argument
2466 if len(TLVs) != 0:
2467 tlvs = ''.join('%02x' % tlv for tlv in TLVs)
2565 def MGMT_COMM_GET(self, Addr='ff02::1', TLVs=[]): argument
2576 print(TLVs)
2578 if len(TLVs) != 0:
[all …]
DOpenThread.py2362 EncryptedPacket.TLVs = (PlatformPackets.read(EncryptedPacket.Type, payload)
2440 def MGMT_ACTIVE_GET(self, Addr='', TLVs=()): argument
2453 if len(TLVs) != 0:
2454 tlvs = ''.join('%02x' % tlv for tlv in TLVs)
2623 def MGMT_PENDING_GET(self, Addr='', TLVs=()): argument
2636 if len(TLVs) != 0:
2637 tlvs = ''.join('%02x' % tlv for tlv in TLVs)
2713 def MGMT_COMM_GET(self, Addr='ff02::1', TLVs=()): argument
2722 if len(TLVs) != 0:
2723 tlvs = ''.join('%02x' % tlv for tlv in TLVs)