Skip to content

Commit

Permalink
Merge pull request #626 from markusjellitsch/fix/set-ext-scan-param-cmd
Browse files Browse the repository at this point in the history
Update device.py - Fix scan_interval param in hci.HCI_LE_Set_Extended_Scan_Parameters_Command
  • Loading branch information
barbibulle authored Jan 14, 2025
2 parents c1ea0dd + 86cda87 commit 5a477eb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion bumble/device.py
Original file line number Diff line number Diff line change
Expand Up @@ -2909,7 +2909,7 @@ async def start_scanning(
scanning_filter_policy=scanning_filter_policy,
scanning_phys=scanning_phys_bits,
scan_types=[scan_type] * scanning_phy_count,
scan_intervals=[int(scan_window / 0.625)] * scanning_phy_count,
scan_intervals=[int(scan_interval / 0.625)] * scanning_phy_count,
scan_windows=[int(scan_window / 0.625)] * scanning_phy_count,
),
check_result=True,
Expand Down

0 comments on commit 5a477eb

Please sign in to comment.