Home
last modified time | relevance | path

Searched refs:maxInterval (Results 1 – 4 of 4) sorted by relevance

/edtt-latest/src/components/
Dinitiator.py147 handle, minInterval, maxInterval, latency, supervisionTimeout = -1, -1, -1, -1, -1;
154 handle, minInterval, maxInterval, latency, supervisionTimeout = event.decode();
164 return success, handle, minInterval, maxInterval, latency, supervisionTimeout;
268 def __update(self, minInterval, maxInterval, latency, timeout): argument
271 if 4 * timeout <= (1+latency) * maxInterval:
272 timeout = (((1+latency) * maxInterval) + 7) / 4;
274 …n_update(self.transport, self.initiator, self.handles[0], minInterval, maxInterval, latency, timeo…
412 def update(self, minInterval, maxInterval, latency, timeout): argument
413 …self.updInitiatorRequest = self.__update(minInterval, maxInterval, latency, timeout) if not self.h…
Dadvertiser.py100 self.maxInterval = 32; # Maximum Advertise Interval = 32 x 0.625 ms = 20.00 ms
123 …dvertising_parameters(self.transport, self.idx, self.minInterval, self.maxInterval, self.advertise…
Devents.py1055 … handle, minInterval, maxInterval, latency, timeout = struct.unpack('<HHHHH', self.data[1:11]);
1058 self.__checkConnectionInterval(maxInterval);
1061 if not (minInterval <= maxInterval):
1064 handle = minInterval = maxInterval = latency = timeout = 0;
1065 return handle, minInterval, maxInterval, latency, timeout;
/edtt-latest/src/tests/
Dhci_verification.py565 advertiser.minInterval, advertiser.maxInterval = 32-2, 32-1;