| /edtt-latest/src/components/ |
| D | initiator.py | 81 def __hasConnectionCompleteEvent(self, idx, timeout): argument 86 success = has_event(self.transport, idx, timeout)[0]; 91 … self.status, handle, role, address, interval, latency, timeout, accuracy = event.decode(); 94 …self.status, handle, role, address, localRPA, peerRPA, interval, latency, timeout, accuracy = even… 103 def __hasDisconnectCompleteEvent(self, idx, timeout): argument 107 success, number_of_events = has_event(self.transport, idx, timeout); 127 def __hasPhysUpdateCompleteEvent(self, idx, timeout): argument 131 success = has_event(self.transport, idx, timeout)[0]; 145 def __hasConnectionParamRequestEvent(self, idx, timeout): argument 149 success = has_event(self.transport, idx, timeout)[0]; [all …]
|
| D | events.py | 416 def __checkPayloadTimeout(self, timeout): argument 417 if not (0 < timeout): 476 def __checkSupervisionTimeout(self, timeout): argument 477 if not (0x000A <= timeout <= 0x0C80): 596 handle, timeout = struct.unpack('<HH', self.data[4:8]); 598 self.__checkPayloadTimeout(timeout); 600 self.__checkPayloadTimeout(timeout); 602 handle = timeout = 0; 603 return handle, timeout; 989 interval, latency, timeout, accuracy = struct.unpack('<HHHB', self.data[12:19]); [all …]
|
| D | resolvable.py | 102 def timeout(self, timeout): member in ResolvableAddresses 103 status = le_set_resolvable_private_address_timeout(self.transport, self.idx, timeout, 100);
|
| D | advertiser.py | 172 def timeout(self, timeout=200): argument 174 if has_event(self.transport, self.idx, timeout)[0]:
|
| D | edttt_bsim.py | 291 timeout = to*1000 + self.last_t; 300 while self.last_t < timeout:
|
| D | dump.py | 194 timeout = int.from_bytes(payload[26:28], 'little', signed=False) 197 ll_data = LLData(aa, crc_init, win_size, win_offset, interval, latency, timeout, ch_m, hop, sca)
|
| D | basic_commands.py | 1804 …request_reply(transport, idx, handle, IntervalMin, IntervalMax, latency, timeout, MinCeLen, MaxCeL… argument 1806 …I_OP_LE_CONN_PARAM_REQ_REPLY, handle, IntervalMin, IntervalMax, latency, timeout, MinCeLen, MaxCeL…
|
| /edtt-latest/src/tests/ |
| D | ll_verification.py | 451 success = advertiser.timeout() and success; 2024 success = RPAs[upperTester].timeout( 60 ) and RPAs[lowerTester].timeout( 60 ) and success; 2063 success = RPAs[upperTester].timeout( 60 ) and RPAs[lowerTester].timeout( 60 ) and success; 2105 success = RPAs[upperTester].timeout( 60 ) and RPAs[lowerTester].timeout( 60 ) and success; 2145 success = RPA.timeout( 2 ) and success; 2197 success = RPAs[upperTester].timeout( 60 ) and RPAs[lowerTester].timeout( 60 ) and success; 2236 success = RPAs[upperTester].timeout( 60 ) and RPAs[upperTester].timeout( 60 ) and success; 2270 success = RPA.timeout( 60 ) and success; 2309 success = RPA.timeout( 60 ) and success; 2390 success = advertiser.timeout() and success; [all …]
|
| D | gap_verification.py | 559 success = success and RPAs[upperTester].timeout( 60 ) and RPAs[lowerTester].timeout(60); 906 success = success and RPAs[upperTester].timeout( 60 ) and RPAs[lowerTester].timeout(60); 955 success = success and RPAs[upperTester].timeout( 60 ) and RPAs[lowerTester].timeout(60); 1054 success = success and RPAs[upperTester].timeout( 60 ) and RPAs[lowerTester].timeout(60); 1095 success = success and RPAs[upperTester].timeout( 60 ) and RPAs[lowerTester].timeout(60); 1145 timeout = 3000 1146 success = success and initiator.update(interval, interval, initiator.latency, timeout) 1190 timeout = 3000 1191 success = success and initiator.update(interval, interval, initiator.latency, timeout) 1230 timeout = 3300 [all …]
|
| D | test_utils.py | 163 def readData(transport, idx, trace, timeout=200): argument 166 dataReady = le_data_ready(transport, idx, timeout); 178 def readDataFragments(transport, idx, trace, timeout=100): argument 182 dataReady = le_data_ready(transport, idx, timeout); 189 timeout = 99; 199 status, handle, interval, latency, timeout = event.decode(); 850 def wait_for_ADV_IND_end(transport, packets, timeout): argument 853 timeout = timeout*1000 # Convert to microseconds 854 while timeout > 0: 865 timeout -= checkInterval
|
| D | hci_verification.py | 774 success = success and RPAs[upperTester].timeout(60) and RPAs[lowerTester].timeout(60); 838 success = success and RPAs[upperTester].timeout(60) and RPAs[lowerTester].timeout(60);
|
| D | gatt_verification.py | 50 def attResponse(transport, initiator, trace, timeout=100): argument 54 dataReady = le_data_ready(transport, initiator.initiator, timeout); 55 timeout = 99;
|
| /edtt-latest/docs/ |
| D | EDTT_transport.md | 31 * recv(idx, number_bytes, timeout): Attempt to retrieve `<number_bytes>` 32 from the device number `<idx>`. If it cannot manage in `<timeout>`
|
| D | EDTT_framework_Babblesim.md | 41 * recv(device_id, count, timeout) 194 … The 0 is an identifier for the DUT to receive the command. The 100 is a timeout parameter (specif…
|