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

Fix BLEClient handling of app registration results #4055

Closed
wants to merge 2 commits into from

Conversation

buxtronix
Copy link
Contributor

GATTC events are propagated to all clients, however clients should only act on events directed at their connection (conn_id). This fixes this so that clients ignore events not for them.

@buxtronix
Copy link
Contributor Author

On closer consideration, this may not be the root problem, I think the issue is that the gattc_if is not being set properly at initial client registration. I'll update this PR after verifying.

@buxtronix buxtronix changed the title A BLEClient should not take action on events not for it Fix BLEClient handling of app registration results Jun 3, 2020
@buxtronix
Copy link
Contributor Author

Hm no, it seems the first commit works, not the second, but still doesnt seem to be the root cause. I'll close this and dig a bit more.

@buxtronix buxtronix closed this Jun 3, 2020
@chegewara
Copy link
Contributor

IIRC esp_ble_server is using gatt_if to distinguish connected peers, but esp_ble_client is using conn_id.

kind3r added a commit to kind3r/arduino-esp32 that referenced this pull request Jan 24, 2021
Cleanup before calling disconnect callback for safe delete.
Reject other events during registration.
Adresses espressif#4047, espressif#4055
me-no-dev pushed a commit that referenced this pull request Feb 16, 2021
- Remove client from the list of devices in case registration fails
- Filter other events not related to registration during registration phase
- Cleanup if connect fails
- Reset if after disconnect
- Disconnect callback *after* cleanup is done so object can be deleted

This fixes some of the issues I had like:
- `BLEClient::connect` hangs up and never recovered because registration failed
- `BLEClient` could not be deleted after disconnect or deletion creating ghost events #4047
- `BLEClient` could not be properly reused after a connection was attempted (successful or not) 

* Cleanup in case of registration and connect failure.
Cleanup before calling disconnect callback for safe delete.
Reject other events during registration.
Adresses #4047, #4055

* Clear if after unregister #4047
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants