Home
last modified time | relevance | path

Searched refs:header (Results 1 – 6 of 6) sorted by relevance

/edtt-latest/src/components/
Dbsim_device.py143 header, = struct.unpack("=I", raw_header)
144 if header == PB_MSG_DISCONNECT:
146 elif header != PB_MSG_WAIT_END:
147 … raise Exception("Low level communication with PHY failed; Received invalid response %s" % header)
169 header, = struct.unpack("=I", raw_header)
170 if header == PB_MSG_DISCONNECT:
172 elif header != P2G4_MSG_TX_END:
173 … raise Exception("Low level communication with PHY failed; Received invalid response %s" % header)
Ddump.py148 … def __init__(self, direction, idx, ts, aa, channel_num, phy, data, payload_type, header, payload): argument
157 self.header = header
212 header = Header(pdu_type, ch_sel, tx_add, rx_add, payload_len)
218 … return parse_ext_adv_pdu(direction, idx, ts, aa, channel_num, phy, header, data, aux_ptr_packets);
219 return Packet(direction, idx, ts, aa, channel_num, phy, data, payload_type, header, payload)
267 def parse_ext_adv_pdu(direction, idx, ts, aa, channel_num, phy, header, data, aux_ptr_packets): argument
269 if header.PDU_Type == 0b0111:
276 if header.PDU_Type == 0b0011:
282 elif header.PDU_Type == 0b0101:
286 elif header.PDU_Type == 0b0111:
[all …]
Dedttt_bsim.py345 header, = struct.unpack("=I", raw_header)
346 if header == PB_MSG_DISCONNECT:
351 elif header != PB_MSG_WAIT_END:
352 … raise Exception("Low level communication with PHY failed; Received invalid response %s" % header)
Dbtsnoop.py83 header = struct.pack(">BBBBBBBBLL", btsnoop_id[0], btsnoop_id[1],
88 self.file.write(header)
/edtt-latest/docs/
DEDTT_framework_Babblesim.md123 * `data`: The raw data of the packet (excluding header)
125 * `header`: The header of the packet - a named tuple containing `pdu_type`, `ch_sel`, `tx_add`, `rx…
/edtt-latest/src/tests/
Dll_verification.py781 success = success and packet.header.ChSel == 1
2505 success = success and packet.header.TxAdd == 0x00 # AdvA is public
2539 success = success and packet.header.TxAdd == 0x00 # AdvA is public
2605 if packet.header.Length > 0:
2606 success = success and packet.header.LLID == 0b10
2608 success = success and packet.header.LLID == 0b01
2612 …uccess = success and packet.header.SN == lowerTesterLLData.header.SN and packet.header.NESN == (1 …
2730 success = success and packet.header.ChSel == 1
3020 success = success and packet.header.TxAdd == 0x00 # AdvA is public
3032 success = success and packet.header.RxAdd == 0x01 # TargetA is random
[all …]