Compare commits

..

1 Commits

Author SHA1 Message Date
Gilles Boccon-Gibod 3e0cad1456 add controller-info CLI app to setup 2022-10-11 22:15:23 -07:00
2 changed files with 3 additions and 2 deletions
+2 -2
View File
@@ -857,9 +857,9 @@ class Controller:
See Bluetooth spec Vol 2, Part E - 7.8.44 LE Set Address Resolution Enable Command
'''
ret = HCI_SUCCESS
if command.address_resolution_enable == 1:
if command.address_resolution == 1:
self.le_address_resolution = True
elif command.address_resolution_enable == 0:
elif command.address_resolution == 0:
self.le_address_resolution = False
else:
ret = HCI_INVALID_HCI_COMMAND_PARAMETERS_ERROR
+1
View File
@@ -48,6 +48,7 @@ install_requires =
[options.entry_points]
console_scripts =
bumble-console = bumble.apps.console:main
bumble-controller-info = bumble.apps.controller_info:main
bumble-gatt-dump = bumble.apps.gatt_dump:main
bumble-hci-bridge = bumble.apps.hci_bridge:main
bumble-pair = bumble.apps.pair:main