Skip to content

Commit

Permalink
Add address resolution offload to config
Browse files Browse the repository at this point in the history
  • Loading branch information
zxzxwu authored and uael committed Oct 25, 2023
1 parent 78b8b50 commit 72199f5
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions bumble/device.py
Original file line number Diff line number Diff line change
Expand Up @@ -847,6 +847,9 @@ def load_from_dict(self, config: Dict[str, Any]) -> None:
self.connectable = config.get('connectable', self.connectable)
self.discoverable = config.get('discoverable', self.discoverable)
self.gatt_services = config.get('gatt_services', self.gatt_services)
self.address_resolution_offload = config.get(
'address_resolution_offload', self.address_resolution_offload
)

# Load or synthesize an IRK
irk = config.get('irk')
Expand Down

0 comments on commit 72199f5

Please sign in to comment.