-
Notifications
You must be signed in to change notification settings - Fork 7.4k
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
Adds BLE Characteristic User Description 0x2901 Descriptor #9883
Conversation
Adds a class for 0x2901 - Characteristic User Descriptor. This Descriptor is usual in BLE and describes with text what each characteristic is about.
Adds Descriptor 0x2901 This is the Characteristic User Description, commomnly used in BLE. Adds the implementation for make it easier to be used.
Improve Notify.ino example by adding the 0x2901 descriptor This also prevents and helps to find issues when testing CI.
👋 Hello SuGlider, we appreciate your contribution to this project! Click to see more instructions ...
Review and merge process you can expect ...
|
Fixes the UUIDs to used the ame as in BLE Client example. Makes sure that all examples use the same UUIDs.
Adds the necessary new Library code to CMake. Solves CI issue.
Test Results 56 files 56 suites 5m 15s ⏱️ Results for commit f095335. ♻️ This comment has been updated with latest results. |
Memory usage test (comparing PR against master branch)The table below shows the summary of memory usage change (decrease - increase) in bytes and percentage for each target.
Click to expand the detailed deltas report [usage change in BYTES]
|
Description of Change
This PR adds a new BLE Descriptor Class 0x2901: characteristic user description.
The value of this description is a user-readable string describing the characteristic.
The Characteristic User Description descriptor provides a textual user description for a characteristic value.
If the Writable Auxiliary bit of the Characteristics Properties is set then this descriptor is written.
Only one User Description descriptor exists in a characteristic definition.
Modifies the
Notify.ino
example to use this new descriptor. It will help on detecting issues with HIL CI.Tests scenarios
Tested with ESP32 and ESP32-C6. It can be tested using the code below or by using the modified
Notify.ino
example from this PR.Related links
Used to simulate the issue described in #9768