Home
last modified time | relevance | path

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

/edtt-latest/src/tests/
Dll_verification.py729 def ll_ddi_adv_bv_22_c(transport, upperTester, lowerTester, trace, packets): argument
778 for packet in packets.fetch(packet_filter=('ADV_IND')):
795 packets.flush()
803 def ll_ddi_adv_bv_27_c(transport, upperTester, lowerTester, trace, packets): argument
869 for packet in packets.fetch(packet_filter=('ADV_EXT_IND')):
889 for packet in packets.fetch(packet_filter=('AUX_ADV_IND')):
924 for packet in packets.fetch(packet_filter=('AUX_CHAIN_IND')):
951 packets.flush()
961 def ll_ddi_adv_bv_28_c(transport, upperTester, lowerTester, trace, packets): argument
1015 for packet in packets.fetch(packet_filter=('AUX_ADV_IND')):
[all …]
Dtest_utils.py33 numHandles, handles, packets = event.decode()
36 count -= packets[0]
850 def wait_for_ADV_IND_end(transport, packets, timeout): argument
855 lastPacket = packets.findLast(packet_filter=('ADV_IND'))
874 def wait_for_AUX_ADV_IND_end(transport, packets): argument
880 lastPacket = packets.findLast(packet_filter=('ADV_EXT_IND', 'AUX_ADV_IND'))
882 auxAdvIndPacket = packets.findLast(packet_filter='AUX_ADV_IND')
899 lastPacket = packets.findLast()
/edtt-latest/docs/
DEDTT_framework_Babblesim.md26 … connects directly to BabbleSim. This device can be used to send raw BLE packets without going thr…
113packets sent by the upper and lower tester via BabbleSims dump files. Note that you will usuallly …
115 The raw packets will get decoded into a `Packet` before being handed over to the test cases via the…
126 …he BT Core Spec. One notable exception is for the extended advertisement packets - for these the p…
130 …ays to inquire about packets sent on the phy from within a test case. Generally, the way to use th…
134 Returns an iterator to use in a `for` loop. Will iterate through all packets matching the provided …
140 Simple example - to loop through all AUX_ADV_IND packets and print them:
143 for packet in packets.fetch(packet_filter=('AUX_ADV_IND')):
166 Flushes the current packets to start fresh. All packets currently known will be removed and can no …
DEDTT_transport_bsim.md38 BLE packets without going through a BLE controller first.
/edtt-latest/src/
Dedttool.py79 def run_one_test(args, xtra_args, transport, trace, test_mod, test_spec, nameLen, packets): argument
87 result = test_mod.run_a_test(args, transport, trace, test_spec, packets);
/edtt-latest/src/components/
Devents.py736 packets = struct.unpack('<H', self.data[4:6])[0];
738 packets = 0;
739 return (packets,);
952 packets = []
956 packets.append(struct.unpack_from('<H', self.data, 3+i*4)[0])
959 return numHandles, handles, packets;