-
Notifications
You must be signed in to change notification settings - Fork 354
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
does not implement -[peripheral:didModifyServices:] #756
Comments
I think an example of the didModifyServices delegate would be
the note on the didModifyServices is
which says UNLESS this delegate is provided AND discovers the services, you CANNOT access them |
I added the didModifyServices delegate, no longer get the error, but don't get the new service detected... |
well, there is a small doc that says the device MUST have the two default services
I didn't add those 'mandatory' services |
relative to #329. from 2016
I have a device that has over the air firmware upgrade support. on a different service from the main ble services.
I do NOT want that service findable except when OTA is started.
so, I write a characteristic on the existing services, and it adds the OTA service, and changes the primary UUID.
but when I try to send to the new service (on the same device) I get error
the write also forces a disconnect.
so, I've added a close() after the write.. to signal the connection is not valid
then a new connect
and then a new discover... but it shows only the old services
nrfconnect shows the new service
The text was updated successfully, but these errors were encountered: