-
Notifications
You must be signed in to change notification settings - Fork 74
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
basic auracast app #489
basic auracast app #489
Conversation
f26597b
to
2f2a275
Compare
8f412dd
to
60d955d
Compare
60d955d
to
dea907b
Compare
if response.status != HCI_Command_Status_Event.PENDING: | ||
raise HCI_StatusError(response) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Could be replaced with send_command(..., check_result=True)
(HCI_SUCCESS and HCI_PENDING are both 0)
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Good point! I now realize that there's a bunch of places in the code base where the same idea applies. I'll make a separate PR to unify that.
This app is intended to support auracast features. To start with, only scanning for broadcasts is implemented. More functionality, including sending and receiving broadcasts, will be added in future PRs.