mirror of
https://github.com/h2zero/esp-nimble-cpp.git
synced 2024-11-23 21:50:55 +01:00
Remove assert for 0x2902, make a dummy descriptor instead.
Rather than asserting for a harmless situation, this will just create a dummy descriptor object, marked as removed, and print a warning.
This commit is contained in:
parent
fae53b8d7f
commit
b8d6e3d87f
2 changed files with 9 additions and 4 deletions
|
@ -87,9 +87,7 @@ NimBLEDescriptor* NimBLECharacteristic::createDescriptor(const char* uuid, uint3
|
||||||
*/
|
*/
|
||||||
NimBLEDescriptor* NimBLECharacteristic::createDescriptor(const NimBLEUUID &uuid, uint32_t properties, uint16_t max_len) {
|
NimBLEDescriptor* NimBLECharacteristic::createDescriptor(const NimBLEUUID &uuid, uint32_t properties, uint16_t max_len) {
|
||||||
NimBLEDescriptor* pDescriptor = nullptr;
|
NimBLEDescriptor* pDescriptor = nullptr;
|
||||||
if(uuid == NimBLEUUID(uint16_t(0x2902))) {
|
if (uuid == NimBLEUUID(uint16_t(0x2904))) {
|
||||||
assert(0 && "0x2902 descriptors cannot be manually created");
|
|
||||||
} else if (uuid == NimBLEUUID(uint16_t(0x2904))) {
|
|
||||||
pDescriptor = new NimBLE2904(this);
|
pDescriptor = new NimBLE2904(this);
|
||||||
} else {
|
} else {
|
||||||
pDescriptor = new NimBLEDescriptor(uuid, properties, max_len, this);
|
pDescriptor = new NimBLEDescriptor(uuid, properties, max_len, this);
|
||||||
|
|
|
@ -55,7 +55,14 @@ NimBLEDescriptor::NimBLEDescriptor(NimBLEUUID uuid, uint16_t properties, uint16_
|
||||||
m_pCharacteristic = pCharacteristic;
|
m_pCharacteristic = pCharacteristic;
|
||||||
m_pCallbacks = &defaultCallbacks; // No initial callback.
|
m_pCallbacks = &defaultCallbacks; // No initial callback.
|
||||||
m_properties = 0;
|
m_properties = 0;
|
||||||
|
|
||||||
|
// Check if this is the client configuration descriptor and set to removed if true.
|
||||||
|
if (uuid == NimBLEUUID((uint16_t)0x2902)) {
|
||||||
|
NIMBLE_LOGW(LOG_TAG, "Manually created 2902 descriptor has no functionality; please remove.");
|
||||||
|
m_removed = 1;
|
||||||
|
} else {
|
||||||
m_removed = 0;
|
m_removed = 0;
|
||||||
|
}
|
||||||
|
|
||||||
if (properties & BLE_GATT_CHR_F_READ) { // convert uint16_t properties to uint8_t
|
if (properties & BLE_GATT_CHR_F_READ) { // convert uint16_t properties to uint8_t
|
||||||
m_properties |= BLE_ATT_F_READ;
|
m_properties |= BLE_ATT_F_READ;
|
||||||
|
|
Loading…
Reference in a new issue