Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add setup_data_path for iso queues #648

Merged
merged 5 commits into from
Feb 18, 2025
Merged
Changes from 3 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 5 additions & 1 deletion apps/auracast.py
Original file line number Diff line number Diff line change
Expand Up @@ -692,7 +692,7 @@ async def run_receive(
def on_new_broadcast(broadcast: BroadcastScanner.Broadcast) -> None:
if scan_result.done():
return
if broadcast_id is None or broadcast.broadcast_id == broadcast_id:
if broadcast_id is None or broadcast.broadcast_:id == broadcast_id:
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Accidental keystroke?

scan_result.set_result(broadcast)

scanner.on('new_broadcast', on_new_broadcast)
Expand Down Expand Up @@ -959,6 +959,10 @@ async def run_transmit(
),
),
)
for bis_link in big.bis_links:
await bis_link.setup_data_path(
direction=bis_link.Direction.HOST_TO_CONTROLLER
)

iso_queues = [
bumble.device.IsoPacketStream(big.bis_links[0], 64),
Expand Down
Loading