forked from arduino-libraries/ArduinoBLE
-
Notifications
You must be signed in to change notification settings - Fork 4
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
For Aggregate Format Descriptor - Descriptor handles are not accessible (solution provided) #20
Comments
I have cloned your repo and am doing work on my own branch to track changes, Let me know if I can push the branch to your repo After proof of concept I did some refactoring so changes would better fit BLEArduino architecture. Here are the only changes remaining for the Aggregate support BLELocalDescriptor.h
BLELocalDescriptor.cpp
BLEDescriptor.h
BLEDescriptor.cpp
Here is a sample of what usage would look like
|
MichaelRoop
changed the title
Descriptor handles are not accessible
Descriptor handles are not accessible (solution provided)
Feb 14, 2021
MichaelRoop
changed the title
Descriptor handles are not accessible (solution provided)
For Aggregate Format Descriptor - Descriptor handles are not accessible (solution provided)
Feb 14, 2021
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
The handles are required when you want to create and Aggregate Format Descriptor. It requires the handles of the previously created Format Descriptors as it's data packet. It can contain one or many Format descriptors that the define the payload of the owning Characteristic.
On the App side, the Format Descriptors are used in order of inclusion in the Aggregate Format Descriptor to parse sections of the data packet received from that Characteristic
I am in the process of exposing the handle() function to test viability of the change. Since it is a const function it should not impact the value
The text was updated successfully, but these errors were encountered: