-
-
Notifications
You must be signed in to change notification settings - Fork 25
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 GATT Notifications #119
Comments
Initial work in ab33985 . Need to differentiate between:
|
Notifications for characteristics will not work for multiple characteristics with the same UUID in a service. Bluetooth/Sources/GATTServer.swift Line 280 in ab33985
|
Only notify connected client if write is from server and not client write request
There seems to also be issues in the |
I can confirm the there is an issue around GATTClient processing notifications. A peripheral receives and processes the subscribe request from the GATTClient and the unsubscribe request when the GATTClient is closed. Notifications sent by the peripheral are not being processed correctly by the GATTClient. |
I am also getting this error Whenever I start a notify on characteristic. It doesn't happen every time but does once about 1 in 3 times. |
GATTServer
should not be sending GATT notifications to the connected client that wrote the value.The text was updated successfully, but these errors were encountered: