Home
last modified time | relevance | path

Searched refs:timeout (Results 1 – 14 of 14) sorted by relevance

/edtt-latest/src/components/
Dinitiator.py81 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 …]
Devents.py416 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 …]
Dresolvable.py102 def timeout(self, timeout): member in ResolvableAddresses
103 status = le_set_resolvable_private_address_timeout(self.transport, self.idx, timeout, 100);
Dadvertiser.py172 def timeout(self, timeout=200): argument
174 if has_event(self.transport, self.idx, timeout)[0]:
Dedttt_bsim.py291 timeout = to*1000 + self.last_t;
300 while self.last_t < timeout:
Ddump.py194 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)
Dbasic_commands.py1804 …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/
Dll_verification.py451 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 …]
Dgap_verification.py559 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 …]
Dtest_utils.py163 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
Dhci_verification.py774 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);
Dgatt_verification.py50 def attResponse(transport, initiator, trace, timeout=100): argument
54 dataReady = le_data_ready(transport, initiator.initiator, timeout);
55 timeout = 99;
/edtt-latest/docs/
DEDTT_transport.md31 * recv(idx, number_bytes, timeout): Attempt to retrieve `<number_bytes>`
32 from the device number `<idx>`. If it cannot manage in `<timeout>`
DEDTT_framework_Babblesim.md41 * 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…