Searched refs:enabled (Results 1 – 5 of 5) sorted by relevance
| /edtt-latest/src/components/ |
| D | events.py | 396 def __checkEncryptionEnabled(self, enabled): argument 397 if not (0 <= enabled <= 2): 543 status, handle, enabled = struct.unpack('<BHB', self.data[:4]); 545 self.__checkEncryptionEnabled(enabled); 547 status = handle = enabled = 0; 548 return status, handle, enabled; 553 status, handle, enabled, key_size = struct.unpack('<BHBB', self.data[:5]) 555 self.__checkEncryptionEnabled(enabled) 558 status = handle = enabled = key_size = 0 559 return status, handle, enabled, key_size
|
| D | pairing.py | 464 status, handle, enabled = event.decode(); 465 success = (status == 0) and (enabled == 1); 482 status, handle, enabled = event.decode(); 483 success = (status == 0) and (enabled == 1);
|
| /edtt-latest/src/tests/ |
| D | test_utils.py | 262 success, status, handle, enabled, key_size = has_event(transport, idx, to)[0], -1, -1, -1, -1 267 status, handle, enabled = event.decode() 269 status, handle, enabled, key_size = event.decode() 273 return success, handle, enabled, key_size 763 s, handle, enabled, key_size = hasEncryptionChangeEvent(transport, peripheral, trace, 1000) 764 success = s and handle == conn_handle_p and enabled == 0x01 and success 766 s, handle, enabled, key_size = hasEncryptionChangeEvent(transport, central, trace, 1000) 767 success = s and handle == conn_handle_c and enabled == 0x01 and success
|
| /edtt-latest/docs/ |
| D | EDTT_transport_bsim.md | 37 The low level device (if enabled) is a BSim device in itself; It can be used to inject raw 124 to be assigned to it when enabled; Specify this using the --low-level-device-nbr command line argum…
|
| D | EDTT_framework_Babblesim.md | 73 To run with the low level device enabled, EDTT itself also needs to be assigned a BabbleSim device …
|