From 471b6445907eb3bef9844b8e49e3d74c0903c8be Mon Sep 17 00:00:00 2001 From: Guo-Rong <5484552+gkoh@users.noreply.github.com> Date: Thu, 16 Jan 2025 12:01:47 +1030 Subject: [PATCH 01/11] Fix characteristic discovery with no descriptors. (#863) Avoid discovery of descriptors if there are no handles remaining. This reinstates the check removed in 853241b. --- src/NimBLERemoteCharacteristic.cpp | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/src/NimBLERemoteCharacteristic.cpp b/src/NimBLERemoteCharacteristic.cpp index b9c16c74..bac85747 100644 --- a/src/NimBLERemoteCharacteristic.cpp +++ b/src/NimBLERemoteCharacteristic.cpp @@ -101,6 +101,12 @@ int NimBLERemoteCharacteristic::descriptorDiscCB( bool NimBLERemoteCharacteristic::retrieveDescriptors(const NimBLEUUID* uuidFilter) const { NIMBLE_LOGD(LOG_TAG, ">> retrieveDescriptors() for characteristic: %s", getUUID().toString().c_str()); + // If this is the last handle then there are no descriptors + if (getHandle() == getRemoteService()->getEndHandle()) { + NIMBLE_LOGD(LOG_TAG, "<< retrieveDescriptors(): found 0 descriptors."); + return true; + } + NimBLETaskData taskData(const_cast(this)); desc_filter_t filter = {uuidFilter, &taskData}; From f9a21543b27c2e1311db41f5185a2ba2a8a6b5f6 Mon Sep 17 00:00:00 2001 From: Ryan Powell Date: Sun, 26 Jan 2025 11:09:04 -0700 Subject: [PATCH 02/11] Rename config macros to enable duplicate scan options on s3/c3 (#877) --- src/nimconfig_rename.h | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) diff --git a/src/nimconfig_rename.h b/src/nimconfig_rename.h index 24029c29..c32cd42f 100644 --- a/src/nimconfig_rename.h +++ b/src/nimconfig_rename.h @@ -63,3 +63,19 @@ #if defined(CONFIG_BT_NIMBLE_EXT_ADV_MAX_SIZE) && !defined(CONFIG_BT_NIMBLE_MAX_EXT_ADV_DATA_LEN) #define CONFIG_BT_NIMBLE_MAX_EXT_ADV_DATA_LEN CONFIG_BT_NIMBLE_EXT_ADV_MAX_SIZE #endif + +#if !defined(CONFIG_BTDM_BLE_SCAN_DUPL) && defined(CONFIG_BT_CTRL_BLE_SCAN_DUPL) +#define CONFIG_BTDM_BLE_SCAN_DUPL CONFIG_BT_CTRL_BLE_SCAN_DUPL +#endif + +#if !defined(CONFIG_BTDM_SCAN_DUPL_TYPE_DEVICE) && defined(CONFIG_BT_CTRL_SCAN_DUPL_TYPE_DEVICE) +#define CONFIG_BTDM_SCAN_DUPL_TYPE_DEVICE CONFIG_BT_CTRL_SCAN_DUPL_TYPE_DEVICE +#endif + +#if !defined(CONFIG_BTDM_SCAN_DUPL_TYPE_DATA) && defined(CONFIG_BT_CTRL_SCAN_DUPL_TYPE_DATA) +#define CONFIG_BTDM_SCAN_DUPL_TYPE_DATA CONFIG_BT_CTRL_SCAN_DUPL_TYPE_DATA +#endif + +#if !defined(CONFIG_BTDM_SCAN_DUPL_TYPE_DATA_DEVICE) && defined(CONFIG_BT_CTRL_SCAN_DUPL_TYPE_DATA_DEVICE) +#define CONFIG_BTDM_SCAN_DUPL_TYPE_DATA_DEVICE CONFIG_BT_CTRL_SCAN_DUPL_TYPE_DATA_DEVICE +#endif From 1f2676b8f32fe2a42f35b073651eb9bdd7c3de11 Mon Sep 17 00:00:00 2001 From: thekurtovic <40248206+thekurtovic@users.noreply.github.com> Date: Sun, 26 Jan 2025 11:00:34 -0700 Subject: [PATCH 03/11] refactor(RemoteChar): Reduce nesting * Renamed desc_filter_t to NimBLEDescriptorFilter * Added NimBLERemoteDescriptor pointer to NimBLEDescriptorFilter * retrieveDescriptors changed to take NimBLEDescriptorFilter pointer * General cleanup --- src/NimBLERemoteCharacteristic.cpp | 145 +++++++++++++---------------- src/NimBLERemoteCharacteristic.h | 6 +- 2 files changed, 67 insertions(+), 84 deletions(-) diff --git a/src/NimBLERemoteCharacteristic.cpp b/src/NimBLERemoteCharacteristic.cpp index bac85747..8896644d 100644 --- a/src/NimBLERemoteCharacteristic.cpp +++ b/src/NimBLERemoteCharacteristic.cpp @@ -27,17 +27,18 @@ # include -typedef struct { - const NimBLEUUID* uuid; - void* task_data; -} desc_filter_t; +struct NimBLEDescriptorFilter { + NimBLERemoteDescriptor* dsc; + const NimBLEUUID* uuid; + void* taskData; +}; static const char* LOG_TAG = "NimBLERemoteCharacteristic"; /** * @brief Constructor. * @param [in] svc A pointer to the service this characteristic belongs to. - * @param [in] ble_gatt_chr struct defined as: + * @param [in] chr struct defined as: * struct ble_gatt_chr { * uint16_t def_handle; * uint16_t val_handle; @@ -62,73 +63,68 @@ NimBLERemoteCharacteristic::~NimBLERemoteCharacteristic() { /** * @brief Callback used by the API when a descriptor is discovered or search complete. */ -int NimBLERemoteCharacteristic::descriptorDiscCB( - uint16_t conn_handle, const ble_gatt_error* error, uint16_t chr_val_handle, const ble_gatt_dsc* dsc, void* arg) { - int rc = error->status; +int NimBLERemoteCharacteristic::descriptorDiscCB(uint16_t connHandle, + const ble_gatt_error* error, + uint16_t chrHandle, + const ble_gatt_dsc* dsc, + void* arg) { + int rc = error->status; + auto filter = (NimBLEDescriptorFilter*)arg; + auto pTaskData = (NimBLETaskData*)filter->taskData; + const auto pChr = (NimBLERemoteCharacteristic*)pTaskData->m_pInstance; + const auto uuid = filter->uuid; // UUID to filter for NIMBLE_LOGD(LOG_TAG, "Descriptor Discovery >> status: %d handle: %d", rc, (rc == 0) ? dsc->handle : -1); - auto filter = (desc_filter_t*)arg; - auto pTaskData = (NimBLETaskData*)filter->task_data; - const auto pChr = (NimBLERemoteCharacteristic*)pTaskData->m_pInstance; - const NimBLEUUID* uuidFilter = filter->uuid; - - if (pChr->getHandle() != chr_val_handle) { - return 0; // Descriptor not for this characteristic - } - - if (rc == 0) { - if (uuidFilter != nullptr) { - if (ble_uuid_cmp(uuidFilter->getBase(), &dsc->uuid.u) == 0) { - rc = BLE_HS_EDONE; // Found the descriptor, stop the search - } else { - return 0; // Not the descriptor we are looking for - } - } - + // Results for chrHandle added until rc != 0 + // Must find specified UUID if filter is used + if (rc == 0 && pChr->getHandle() == chrHandle + && (!uuid || 0 == ble_uuid_cmp(uuid->getBase(), &dsc->uuid.u))) { + // Return BLE_HS_EDONE if the descriptor was found, stop the search pChr->m_vDescriptors.push_back(new NimBLERemoteDescriptor(pChr, dsc)); - return 0; + rc = !!uuid * BLE_HS_EDONE; } - NimBLEUtils::taskRelease(*pTaskData, rc); - NIMBLE_LOGD(LOG_TAG, "<< Descriptor Discovery"); + if (rc != 0) { + NimBLEUtils::taskRelease(*pTaskData, rc); + NIMBLE_LOGD(LOG_TAG, "<< Descriptor Discovery"); + } return rc; } /** * @brief Populate the descriptors (if any) for this characteristic. - * @param [in] the end handle of the characteristic, or the service, whichever comes first. + * @param [in] filter Structure containing pointers to descriptor, UUID, and task data. + * @return True if successfully retrieved, success = BLE_HS_EDONE. */ -bool NimBLERemoteCharacteristic::retrieveDescriptors(const NimBLEUUID* uuidFilter) const { +bool NimBLERemoteCharacteristic::retrieveDescriptors(NimBLEDescriptorFilter* filter) const { NIMBLE_LOGD(LOG_TAG, ">> retrieveDescriptors() for characteristic: %s", getUUID().toString().c_str()); // If this is the last handle then there are no descriptors if (getHandle() == getRemoteService()->getEndHandle()) { - NIMBLE_LOGD(LOG_TAG, "<< retrieveDescriptors(): found 0 descriptors."); - return true; + NIMBLE_LOGD(LOG_TAG, "<< retrieveDescriptors(): found 0 descriptors."); + return true; } - NimBLETaskData taskData(const_cast(this)); - desc_filter_t filter = {uuidFilter, &taskData}; - int rc = ble_gattc_disc_all_dscs(getClient()->getConnHandle(), getHandle(), getRemoteService()->getEndHandle(), NimBLERemoteCharacteristic::descriptorDiscCB, - &filter); + filter); if (rc != 0) { NIMBLE_LOGE(LOG_TAG, "ble_gattc_disc_all_dscs: rc=%d %s", rc, NimBLEUtils::returnCodeToString(rc)); return false; } - NimBLEUtils::taskWait(taskData, BLE_NPL_TIME_FOREVER); - rc = taskData.m_flags; - if (rc == 0 || rc == BLE_HS_EDONE) { - NIMBLE_LOGD(LOG_TAG, "<< retrieveDescriptors(): found %d descriptors.", m_vDescriptors.size()); - return true; + NimBLEUtils::taskWait(filter->taskData, BLE_NPL_TIME_FOREVER); + rc = ((NimBLETaskData*)filter->taskData)->m_flags; + if (rc != BLE_HS_EDONE) { + NIMBLE_LOGE(LOG_TAG, "<< retrieveDescriptors(): failed: rc=%d %s", rc, NimBLEUtils::returnCodeToString(rc)); + return false; } - NIMBLE_LOGE(LOG_TAG, "<< retrieveDescriptors(): failed: rc=%d %s", rc, NimBLEUtils::returnCodeToString(rc)); - return false; + filter->dsc = m_vDescriptors.back(); + NIMBLE_LOGD(LOG_TAG, "<< retrieveDescriptors(): found %d descriptors.", m_vDescriptors.size()); + return true; } // retrieveDescriptors /** @@ -138,51 +134,36 @@ bool NimBLERemoteCharacteristic::retrieveDescriptors(const NimBLEUUID* uuidFilte */ NimBLERemoteDescriptor* NimBLERemoteCharacteristic::getDescriptor(const NimBLEUUID& uuid) const { NIMBLE_LOGD(LOG_TAG, ">> getDescriptor: uuid: %s", uuid.toString().c_str()); - NimBLERemoteDescriptor* pDsc = nullptr; - size_t prev_size = m_vDescriptors.size(); + NimBLETaskData taskData(const_cast(this)); + NimBLEDescriptorFilter filter = {nullptr, &uuid, &taskData}; + NimBLEUUID uuidTmp; - for (const auto& it : m_vDescriptors) { - if (it->getUUID() == uuid) { - pDsc = it; + for (const auto& dsc : m_vDescriptors) { + if (dsc->getUUID() == uuid) { + filter.dsc = dsc; goto Done; } } - if (retrieveDescriptors(&uuid)) { - if (m_vDescriptors.size() > prev_size) { - pDsc = m_vDescriptors.back(); - goto Done; - } - - // If the request was successful but 16/32 bit uuid not found - // try again with the 128 bit uuid. - if (uuid.bitSize() == BLE_UUID_TYPE_16 || uuid.bitSize() == BLE_UUID_TYPE_32) { - NimBLEUUID uuid128(uuid); - uuid128.to128(); - if (retrieveDescriptors(&uuid128)) { - if (m_vDescriptors.size() > prev_size) { - pDsc = m_vDescriptors.back(); - } - } - } else { - // If the request was successful but the 128 bit uuid not found - // try again with the 16 bit uuid. - NimBLEUUID uuid16(uuid); - uuid16.to16(); - // if the uuid was 128 bit but not of the BLE base type this check will fail - if (uuid16.bitSize() == BLE_UUID_TYPE_16) { - if (retrieveDescriptors(&uuid16)) { - if (m_vDescriptors.size() > prev_size) { - pDsc = m_vDescriptors.back(); - } - } - } - } + if (!retrieveDescriptors(&filter) || filter.dsc) { + goto Done; + } + // Try again with 128 bit uuid if request succeeded with no uuid found. + if (uuid.bitSize() == BLE_UUID_TYPE_16 || uuid.bitSize() == BLE_UUID_TYPE_32) { + uuidTmp = NimBLEUUID(uuid).to128(); + retrieveDescriptors(&filter); + goto Done; + } + // Try again with 16 bit uuid if request succeeded with no uuid found. + // If the uuid was 128 bit but not of the BLE base type this check will fail. + uuidTmp = NimBLEUUID(uuid).to16(); + if (uuidTmp.bitSize() == BLE_UUID_TYPE_16) { + retrieveDescriptors(&filter); } Done: - NIMBLE_LOGD(LOG_TAG, "<< getDescriptor: %sfound", pDsc ? "" : "not "); - return pDsc; + NIMBLE_LOGD(LOG_TAG, "<< getDescriptor: %sfound", filter.dsc ? "" : "not "); + return filter.dsc; } // getDescriptor /** @@ -311,7 +292,7 @@ size_t NimBLERemoteCharacteristic::deleteDescriptor(const NimBLEUUID& uuid) cons * @return True if supported. */ bool NimBLERemoteCharacteristic::canBroadcast() const { - return (m_properties & BLE_GATT_CHR_PROP_BROADCAST) != 0; + return (m_properties & BLE_GATT_CHR_PROP_BROADCAST); }; /** diff --git a/src/NimBLERemoteCharacteristic.h b/src/NimBLERemoteCharacteristic.h index 532d814f..6ecda8d6 100644 --- a/src/NimBLERemoteCharacteristic.h +++ b/src/NimBLERemoteCharacteristic.h @@ -25,8 +25,10 @@ # include # include +class NimBLEUUID; class NimBLERemoteService; class NimBLERemoteDescriptor; +struct NimBLEDescriptorFilter; /** * @brief A model of a remote BLE characteristic. @@ -65,10 +67,10 @@ class NimBLERemoteCharacteristic : public NimBLERemoteValueAttribute { ~NimBLERemoteCharacteristic(); bool setNotify(uint16_t val, notify_callback notifyCallback = nullptr, bool response = true) const; - bool retrieveDescriptors(const NimBLEUUID* uuidFilter = nullptr) const; + bool retrieveDescriptors(NimBLEDescriptorFilter* filter = nullptr) const; static int descriptorDiscCB( - uint16_t conn_handle, const ble_gatt_error* error, uint16_t chr_val_handle, const ble_gatt_dsc* dsc, void* arg); + uint16_t connHandle, const ble_gatt_error* error, uint16_t chrHandle, const ble_gatt_dsc* dsc, void* arg); const NimBLERemoteService* m_pRemoteService{nullptr}; uint8_t m_properties{0}; From 1f47fb28371d1a67b4a34a390689cf1703ca1ede Mon Sep 17 00:00:00 2001 From: h2zero Date: Sun, 26 Jan 2025 18:43:49 -0700 Subject: [PATCH 04/11] Release 2.2.1 --- CHANGELOG.md | 7 +++++++ docs/Doxyfile | 2 +- library.properties | 2 +- 3 files changed, 9 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index bdb34ecb..0658224f 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,13 @@ # Changelog All notable changes to this project will be documented in this file. +## [2.2.1] 2025-01-26 + +## Fixed +- remote descriptor discovery error when no descriptors exist. +- scan filter settings not enabled for esp32s3/c3. +- remote descriptor discovery returning more than the desired descriptor. + ## [2.2.0] 2025-01-12 ## Fixed diff --git a/docs/Doxyfile b/docs/Doxyfile index cb0f615e..5d47ce84 100644 --- a/docs/Doxyfile +++ b/docs/Doxyfile @@ -48,7 +48,7 @@ PROJECT_NAME = NimBLE-Arduino # could be handy for archiving the generated documentation or if some version # control system is used. -PROJECT_NUMBER = 2.2.0 +PROJECT_NUMBER = 2.2.1 # Using the PROJECT_BRIEF tag one can provide an optional one line description # for a project that appears at the top of each page and should give viewer a # quick idea about the purpose of the project. Keep the description short. diff --git a/library.properties b/library.properties index 2e4e701f..d17a296b 100644 --- a/library.properties +++ b/library.properties @@ -1,5 +1,5 @@ name=NimBLE-Arduino -version=2.2.0 +version=2.2.1 author=h2zero maintainer=Ryan Powell sentence=Bluetooth low energy (BLE) library for Arduino based on NimBLE. From a53187da899938a77be772714a12be1abad90bf2 Mon Sep 17 00:00:00 2001 From: h2zero Date: Thu, 6 Feb 2025 18:05:21 -0700 Subject: [PATCH 05/11] [BugFix] Provide default task data when retrieving all descriptors. * Update the descriptor filter when trying again with different UUID sizes. --- src/NimBLERemoteCharacteristic.cpp | 46 ++++++++++++++++-------------- src/NimBLERemoteCharacteristic.h | 2 +- 2 files changed, 26 insertions(+), 22 deletions(-) diff --git a/src/NimBLERemoteCharacteristic.cpp b/src/NimBLERemoteCharacteristic.cpp index 8896644d..b994e1a2 100644 --- a/src/NimBLERemoteCharacteristic.cpp +++ b/src/NimBLERemoteCharacteristic.cpp @@ -63,11 +63,8 @@ NimBLERemoteCharacteristic::~NimBLERemoteCharacteristic() { /** * @brief Callback used by the API when a descriptor is discovered or search complete. */ -int NimBLERemoteCharacteristic::descriptorDiscCB(uint16_t connHandle, - const ble_gatt_error* error, - uint16_t chrHandle, - const ble_gatt_dsc* dsc, - void* arg) { +int NimBLERemoteCharacteristic::descriptorDiscCB( + uint16_t connHandle, const ble_gatt_error* error, uint16_t chrHandle, const ble_gatt_dsc* dsc, void* arg) { int rc = error->status; auto filter = (NimBLEDescriptorFilter*)arg; auto pTaskData = (NimBLETaskData*)filter->taskData; @@ -77,8 +74,7 @@ int NimBLERemoteCharacteristic::descriptorDiscCB(uint16_t connHandle, // Results for chrHandle added until rc != 0 // Must find specified UUID if filter is used - if (rc == 0 && pChr->getHandle() == chrHandle - && (!uuid || 0 == ble_uuid_cmp(uuid->getBase(), &dsc->uuid.u))) { + if (rc == 0 && pChr->getHandle() == chrHandle && (!uuid || 0 == ble_uuid_cmp(uuid->getBase(), &dsc->uuid.u))) { // Return BLE_HS_EDONE if the descriptor was found, stop the search pChr->m_vDescriptors.push_back(new NimBLERemoteDescriptor(pChr, dsc)); rc = !!uuid * BLE_HS_EDONE; @@ -93,10 +89,10 @@ int NimBLERemoteCharacteristic::descriptorDiscCB(uint16_t connHandle, /** * @brief Populate the descriptors (if any) for this characteristic. - * @param [in] filter Structure containing pointers to descriptor, UUID, and task data. + * @param [in] pFilter Pointer to a filter containing pointers to descriptor, UUID, and task data. * @return True if successfully retrieved, success = BLE_HS_EDONE. */ -bool NimBLERemoteCharacteristic::retrieveDescriptors(NimBLEDescriptorFilter* filter) const { +bool NimBLERemoteCharacteristic::retrieveDescriptors(NimBLEDescriptorFilter* pFilter) const { NIMBLE_LOGD(LOG_TAG, ">> retrieveDescriptors() for characteristic: %s", getUUID().toString().c_str()); // If this is the last handle then there are no descriptors @@ -105,24 +101,30 @@ bool NimBLERemoteCharacteristic::retrieveDescriptors(NimBLEDescriptorFilter* fil return true; } + NimBLETaskData taskData(const_cast(this)); + NimBLEDescriptorFilter defaultFilter{nullptr, nullptr, &taskData}; + if (pFilter == nullptr) { + pFilter = &defaultFilter; + } + int rc = ble_gattc_disc_all_dscs(getClient()->getConnHandle(), getHandle(), getRemoteService()->getEndHandle(), NimBLERemoteCharacteristic::descriptorDiscCB, - filter); + pFilter); if (rc != 0) { NIMBLE_LOGE(LOG_TAG, "ble_gattc_disc_all_dscs: rc=%d %s", rc, NimBLEUtils::returnCodeToString(rc)); return false; } - NimBLEUtils::taskWait(filter->taskData, BLE_NPL_TIME_FOREVER); - rc = ((NimBLETaskData*)filter->taskData)->m_flags; + NimBLEUtils::taskWait(pFilter->taskData, BLE_NPL_TIME_FOREVER); + rc = ((NimBLETaskData*)pFilter->taskData)->m_flags; if (rc != BLE_HS_EDONE) { NIMBLE_LOGE(LOG_TAG, "<< retrieveDescriptors(): failed: rc=%d %s", rc, NimBLEUtils::returnCodeToString(rc)); return false; } - filter->dsc = m_vDescriptors.back(); + pFilter->dsc = m_vDescriptors.back(); NIMBLE_LOGD(LOG_TAG, "<< retrieveDescriptors(): found %d descriptors.", m_vDescriptors.size()); return true; } // retrieveDescriptors @@ -134,9 +136,9 @@ bool NimBLERemoteCharacteristic::retrieveDescriptors(NimBLEDescriptorFilter* fil */ NimBLERemoteDescriptor* NimBLERemoteCharacteristic::getDescriptor(const NimBLEUUID& uuid) const { NIMBLE_LOGD(LOG_TAG, ">> getDescriptor: uuid: %s", uuid.toString().c_str()); + NimBLEUUID uuidTmp{uuid}; NimBLETaskData taskData(const_cast(this)); - NimBLEDescriptorFilter filter = {nullptr, &uuid, &taskData}; - NimBLEUUID uuidTmp; + NimBLEDescriptorFilter filter{nullptr, &uuidTmp, &taskData}; for (const auto& dsc : m_vDescriptors) { if (dsc->getUUID() == uuid) { @@ -148,16 +150,18 @@ NimBLERemoteDescriptor* NimBLERemoteCharacteristic::getDescriptor(const NimBLEUU if (!retrieveDescriptors(&filter) || filter.dsc) { goto Done; } - // Try again with 128 bit uuid if request succeeded with no uuid found. - if (uuid.bitSize() == BLE_UUID_TYPE_16 || uuid.bitSize() == BLE_UUID_TYPE_32) { - uuidTmp = NimBLEUUID(uuid).to128(); + + // Try again with 128 bit uuid if request succeeded but no descriptor found. + if (uuid.bitSize() != BLE_UUID_TYPE_128) { + uuidTmp.to128(); retrieveDescriptors(&filter); goto Done; } - // Try again with 16 bit uuid if request succeeded with no uuid found. - // If the uuid was 128 bit but not of the BLE base type this check will fail. - uuidTmp = NimBLEUUID(uuid).to16(); + + // If the uuid was 128 bit, try again with 16 bit uuid. + uuidTmp.to16(); if (uuidTmp.bitSize() == BLE_UUID_TYPE_16) { + filter.uuid = &uuidTmp; retrieveDescriptors(&filter); } diff --git a/src/NimBLERemoteCharacteristic.h b/src/NimBLERemoteCharacteristic.h index 6ecda8d6..109d8d0d 100644 --- a/src/NimBLERemoteCharacteristic.h +++ b/src/NimBLERemoteCharacteristic.h @@ -67,7 +67,7 @@ class NimBLERemoteCharacteristic : public NimBLERemoteValueAttribute { ~NimBLERemoteCharacteristic(); bool setNotify(uint16_t val, notify_callback notifyCallback = nullptr, bool response = true) const; - bool retrieveDescriptors(NimBLEDescriptorFilter* filter = nullptr) const; + bool retrieveDescriptors(NimBLEDescriptorFilter* pFilter = nullptr) const; static int descriptorDiscCB( uint16_t connHandle, const ble_gatt_error* error, uint16_t chrHandle, const ble_gatt_dsc* dsc, void* arg); From 224305e644bbd4e27025e53f40945c24b4a5cfea Mon Sep 17 00:00:00 2001 From: thekurtovic <40248206+thekurtovic@users.noreply.github.com> Date: Mon, 27 Jan 2025 23:32:52 -0500 Subject: [PATCH 06/11] feat(Log): Add macros for conditional log print and rc handling --- src/NimBLELog.h | 17 ++++++++++++----- 1 file changed, 12 insertions(+), 5 deletions(-) diff --git a/src/NimBLELog.h b/src/NimBLELog.h index 618465ec..ec8a0f08 100644 --- a/src/NimBLELog.h +++ b/src/NimBLELog.h @@ -110,16 +110,16 @@ # define NIMBLE_CPP_LOG_FORMAT(letter, format) NIMBLE_CPP_LOG_COLOR_##letter #letter " (%lu) %s: " format LOG_RESET_COLOR "\n" -# define NIMBLE_CPP_LOG_LEVEL_LOCAL(level, tag, format, ...) \ - do { \ - if (level==ESP_LOG_ERROR) { esp_log_write(ESP_LOG_ERROR, tag, NIMBLE_CPP_LOG_FORMAT(E, format), esp_log_timestamp(), tag __VA_OPT__(,) __VA_ARGS__); } \ +# define NIMBLE_CPP_LOG_LEVEL_LOCAL(level, tag, format, ...) \ + do { \ + if (level==ESP_LOG_ERROR) { esp_log_write(ESP_LOG_ERROR, tag, NIMBLE_CPP_LOG_FORMAT(E, format), esp_log_timestamp(), tag __VA_OPT__(,) __VA_ARGS__); } \ else if (level==ESP_LOG_WARN) { esp_log_write(ESP_LOG_WARN, tag, NIMBLE_CPP_LOG_FORMAT(W, format), esp_log_timestamp(), tag __VA_OPT__(,) __VA_ARGS__); } \ else if (level==ESP_LOG_INFO) { esp_log_write(ESP_LOG_INFO, tag, NIMBLE_CPP_LOG_FORMAT(I, format), esp_log_timestamp(), tag __VA_OPT__(,) __VA_ARGS__); } \ else { esp_log_write(ESP_LOG_DEBUG, tag, NIMBLE_CPP_LOG_FORMAT(D, format), esp_log_timestamp(), tag __VA_OPT__(,) __VA_ARGS__); } \ } while(0) -# define NIMBLE_CPP_LOG_PRINT(level, tag, format, ...) \ - do { \ +# define NIMBLE_CPP_LOG_PRINT(level, tag, format, ...) \ + do { \ if (CONFIG_NIMBLE_CPP_LOG_LEVEL >= level) NIMBLE_CPP_LOG_LEVEL_LOCAL(level, tag, format, ##__VA_ARGS__); \ } while (0) @@ -172,5 +172,12 @@ # endif # endif /* CONFIG_NIMBLE_CPP_IDF */ + +# define NIMBLE_LOGD_IF(cond, tag, format, ...) { if (cond) { NIMBLE_LOGD(tag, format, ##__VA_ARGS__); }} +# define NIMBLE_LOGI_IF(cond, tag, format, ...) { if (cond) { NIMBLE_LOGI(tag, format, ##__VA_ARGS__); }} +# define NIMBLE_LOGW_IF(cond, tag, format, ...) { if (cond) { NIMBLE_LOGW(tag, format, ##__VA_ARGS__); }} +# define NIMBLE_LOGE_IF(cond, tag, format, ...) { if (cond) { NIMBLE_LOGE(tag, format, ##__VA_ARGS__); }} +# define NIMBLE_LOGE_RC(rc, tag, format, ...) { if (rc) { NIMBLE_LOGE(tag, format "; rc=%d %s", ##__VA_ARGS__, rc, NimBLEUtils::returnCodeToString(rc)); }} + #endif /* CONFIG_BT_ENABLED */ #endif /* NIMBLE_CPP_LOG_H_ */ \ No newline at end of file From 75aa498d6ee4a9b40f64bc30b31f36d7734dac82 Mon Sep 17 00:00:00 2001 From: thekurtovic <40248206+thekurtovic@users.noreply.github.com> Date: Sun, 26 Jan 2025 11:21:36 -0500 Subject: [PATCH 07/11] feat(AdvDevice): Add convenience operator to NimBLEAddress --- src/NimBLEAdvertisedDevice.cpp | 10 ++++++++++ src/NimBLEAdvertisedDevice.h | 1 + src/NimBLEClient.cpp | 16 ---------------- src/NimBLEClient.h | 4 ---- 4 files changed, 11 insertions(+), 20 deletions(-) diff --git a/src/NimBLEAdvertisedDevice.cpp b/src/NimBLEAdvertisedDevice.cpp index cf6cf710..71007ba5 100644 --- a/src/NimBLEAdvertisedDevice.cpp +++ b/src/NimBLEAdvertisedDevice.cpp @@ -780,6 +780,16 @@ bool NimBLEAdvertisedDevice::isLegacyAdvertisement() const { # endif } // isLegacyAdvertisement +/** + * @brief Convenience operator to convert this NimBLEAdvertisedDevice to NimBLEAddress representation. + * @details This allows passing NimBLEAdvertisedDevice to functions + * that accept NimBLEAddress and/or or it's methods as a parameter. + */ +NimBLEAdvertisedDevice::operator NimBLEAddress() const { + NimBLEAddress address(getAddress()); + return address; +} // operator NimBLEAddress + /** * @brief Get the payload advertised by the device. * @return The advertisement payload. diff --git a/src/NimBLEAdvertisedDevice.h b/src/NimBLEAdvertisedDevice.h index e8d3a773..4b7da39a 100644 --- a/src/NimBLEAdvertisedDevice.h +++ b/src/NimBLEAdvertisedDevice.h @@ -93,6 +93,7 @@ class NimBLEAdvertisedDevice { uint8_t getSecondaryPhy() const; uint16_t getPeriodicInterval() const; # endif + operator NimBLEAddress() const; const std::vector& getPayload() const; const std::vector::const_iterator begin() const; diff --git a/src/NimBLEClient.cpp b/src/NimBLEClient.cpp index e5b1383c..301ef79a 100644 --- a/src/NimBLEClient.cpp +++ b/src/NimBLEClient.cpp @@ -141,22 +141,6 @@ bool NimBLEClient::connect(bool deleteAttributes, bool asyncConnect, bool exchan return connect(m_peerAddress, deleteAttributes, asyncConnect, exchangeMTU); } // connect -/** - * @brief Connect to an advertising device. - * @param [in] device The device to connect to. - * @param [in] deleteAttributes If true this will delete any attribute objects this client may already\n - * have created when last connected. - * @param [in] asyncConnect If true, the connection will be made asynchronously and this function will return immediately.\n - * If false, this function will block until the connection is established or the connection attempt times out. - * @param [in] exchangeMTU If true, the client will attempt to exchange MTU with the server after connection.\n - * If false, the client will use the default MTU size and the application will need to call exchangeMTU() later. - * @return true on success. - */ -bool NimBLEClient::connect(const NimBLEAdvertisedDevice* device, bool deleteAttributes, bool asyncConnect, bool exchangeMTU) { - NimBLEAddress address(device->getAddress()); - return connect(address, deleteAttributes, asyncConnect, exchangeMTU); -} // connect - /** * @brief Connect to a BLE Server by address. * @param [in] address The address of the server. diff --git a/src/NimBLEClient.h b/src/NimBLEClient.h index eba7165f..d193f7d7 100644 --- a/src/NimBLEClient.h +++ b/src/NimBLEClient.h @@ -48,10 +48,6 @@ struct NimBLETaskData; */ class NimBLEClient { public: - bool connect(const NimBLEAdvertisedDevice* device, - bool deleteAttributes = true, - bool asyncConnect = false, - bool exchangeMTU = true); bool connect(const NimBLEAddress& address, bool deleteAttributes = true, bool asyncConnect = false, bool exchangeMTU = true); bool connect(bool deleteAttributes = true, bool asyncConnect = false, bool exchangeMTU = true); bool disconnect(uint8_t reason = BLE_ERR_REM_USER_CONN_TERM); From ad741aa791fa148ba374864b38cc120d034ffd14 Mon Sep 17 00:00:00 2001 From: thekurtovic <40248206+thekurtovic@users.noreply.github.com> Date: Fri, 24 Jan 2025 01:52:49 -0500 Subject: [PATCH 08/11] feat(Device): Implement store status handler --- src/NimBLEDevice.cpp | 15 ++++++++++++++- src/NimBLEDevice.h | 26 ++++++++++++++++++++++++++ 2 files changed, 40 insertions(+), 1 deletion(-) diff --git a/src/NimBLEDevice.cpp b/src/NimBLEDevice.cpp index 01cc079c..52357f86 100644 --- a/src/NimBLEDevice.cpp +++ b/src/NimBLEDevice.cpp @@ -76,6 +76,8 @@ extern "C" void ble_store_config_init(void); /** * Singletons for the NimBLEDevice. */ +NimBLEDeviceCallbacks* NimBLEDevice::m_pDeviceCallbacks = nullptr; + # if defined(CONFIG_BT_NIMBLE_ROLE_OBSERVER) NimBLEScan* NimBLEDevice::m_pScan = nullptr; # endif @@ -900,7 +902,9 @@ bool NimBLEDevice::init(const std::string& deviceName) { // Setup callbacks for host events ble_hs_cfg.reset_cb = NimBLEDevice::onReset; ble_hs_cfg.sync_cb = NimBLEDevice::onSync; - ble_hs_cfg.store_status_cb = ble_store_util_status_rr; /*TODO: Implement handler for this*/ + ble_hs_cfg.store_status_cb = [](struct ble_store_status_event* event, void* arg) { + return m_pDeviceCallbacks->onStoreStatus(event, arg); + }; // Set initial security capabilities ble_hs_cfg.sm_io_cap = BLE_HS_IO_NO_INPUT_OUTPUT; @@ -1262,4 +1266,13 @@ void nimble_cpp_assert(const char* file, unsigned line) { } # endif // CONFIG_NIMBLE_CPP_DEBUG_ASSERT_ENABLED +void NimBLEDevice::setDeviceCallbacks(NimBLEDeviceCallbacks* cb) { + m_pDeviceCallbacks = cb ? cb : &defaultDeviceCallbacks; +} + +int NimBLEDeviceCallbacks::onStoreStatus(struct ble_store_status_event* event, void* arg) { + NIMBLE_LOGD("NimBLEDeviceCallbacks", "onStoreStatus: default"); + return ble_store_util_status_rr(event, arg); +} + #endif // CONFIG_BT_ENABLED diff --git a/src/NimBLEDevice.h b/src/NimBLEDevice.h index 9f9f52b2..ad597678 100644 --- a/src/NimBLEDevice.h +++ b/src/NimBLEDevice.h @@ -66,6 +66,7 @@ class NimBLEConnInfo; # endif class NimBLEAddress; +class NimBLEDeviceCallbacks; # define BLEDevice NimBLEDevice # define BLEClient NimBLEClient @@ -129,6 +130,7 @@ class NimBLEDevice { static bool setOwnAddrType(uint8_t type); static bool setOwnAddr(const NimBLEAddress& addr); static bool setOwnAddr(const uint8_t* addr); + static void setDeviceCallbacks(NimBLEDeviceCallbacks* cb); static void setScanDuplicateCacheSize(uint16_t cacheSize); static void setScanFilterMode(uint8_t type); static bool setCustomGapHandler(gap_event_handler handler); @@ -213,6 +215,8 @@ class NimBLEDevice { static ble_gap_event_listener m_listener; static uint8_t m_ownAddrType; static std::vector m_whiteList; + static NimBLEDeviceCallbacks* m_pDeviceCallbacks; + static NimBLEDeviceCallbacks defaultDeviceCallbacks; # if defined(CONFIG_BT_NIMBLE_ROLE_OBSERVER) static NimBLEScan* m_pScan; @@ -295,5 +299,27 @@ class NimBLEDevice { # include "NimBLEUtils.h" +/** + * @brief Callbacks associated with a BLE device. + */ +class NimBLEDeviceCallbacks { + public: + virtual ~NimBLEDeviceCallbacks() {}; + + /** + * @brief Indicates an inability to perform a store operation. + * This callback should do one of two things: + * -Address the problem and return 0, indicating that the store operation + * should proceed. + * -Return nonzero to indicate that the store operation should be aborted. + * @param event Describes the store event being reported. + * BLE_STORE_EVENT_FULL; or + * BLE_STORE_EVENT_OVERFLOW + * @return 0 if the store operation should proceed; + * nonzero if the store operation should be aborted. + */ + virtual int onStoreStatus(struct ble_store_status_event* event, void* arg); +}; + #endif // CONFIG_BT_ENABLED #endif // NIMBLE_CPP_DEVICE_H_ From 481be02fa7ad38cbb08157e04aab4981a2623575 Mon Sep 17 00:00:00 2001 From: thekurtovic <40248206+thekurtovic@users.noreply.github.com> Date: Fri, 10 Jan 2025 16:28:34 -0500 Subject: [PATCH 09/11] change(2904|AdvData): Add missing parameter name in declarations --- src/NimBLE2904.h | 2 +- src/NimBLEAdvertisementData.h | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/NimBLE2904.h b/src/NimBLE2904.h index 9b615f5f..a958b660 100644 --- a/src/NimBLE2904.h +++ b/src/NimBLE2904.h @@ -68,7 +68,7 @@ class NimBLE2904 : public NimBLEDescriptor { static const uint8_t FORMAT_OPAQUE = 27; static const uint8_t FORMAT_MEDASN1 = 28; - void setDescription(uint16_t); + void setDescription(uint16_t description); void setExponent(int8_t exponent); void setFormat(uint8_t format); void setNamespace(uint8_t namespace_value); diff --git a/src/NimBLEAdvertisementData.h b/src/NimBLEAdvertisementData.h index 6ae2ccf2..86f47505 100644 --- a/src/NimBLEAdvertisementData.h +++ b/src/NimBLEAdvertisementData.h @@ -38,7 +38,7 @@ class NimBLEAdvertisementData { bool addData(const uint8_t* data, size_t length); bool addData(const std::vector& data); bool setAppearance(uint16_t appearance); - bool setFlags(uint8_t); + bool setFlags(uint8_t flag); bool addTxPower(); bool setPreferredParams(uint16_t minInterval, uint16_t maxInterval); bool addServiceUUID(const NimBLEUUID& serviceUUID); From f528a31d1907288889c8a3a1d34f94e2437eaa66 Mon Sep 17 00:00:00 2001 From: William Emfinger Date: Mon, 10 Feb 2025 09:27:56 -0600 Subject: [PATCH 10/11] fix(NimBLEDevice): fix crash when pairing table is full * Add missing definition for default device callbacks (which prevents calling the `setDeviceCallbacks` method) * Ensure `m_pDeviceCallbacks` inital value is set to `&defaultDeviceCallbacks` to prevent crash when pairing table is full After #295 any time the pairing table fills up, the device will crash on the next pairing attempt. --- src/NimBLEDevice.cpp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/NimBLEDevice.cpp b/src/NimBLEDevice.cpp index 52357f86..05019cf7 100644 --- a/src/NimBLEDevice.cpp +++ b/src/NimBLEDevice.cpp @@ -76,7 +76,8 @@ extern "C" void ble_store_config_init(void); /** * Singletons for the NimBLEDevice. */ -NimBLEDeviceCallbacks* NimBLEDevice::m_pDeviceCallbacks = nullptr; +NimBLEDeviceCallbacks NimBLEDevice::defaultDeviceCallbacks{}; +NimBLEDeviceCallbacks* NimBLEDevice::m_pDeviceCallbacks = &defaultDeviceCallbacks; # if defined(CONFIG_BT_NIMBLE_ROLE_OBSERVER) NimBLEScan* NimBLEDevice::m_pScan = nullptr; From 2af10cd682ebbb8966cda1488720cdad5799e4a2 Mon Sep 17 00:00:00 2001 From: h2zero Date: Tue, 25 Feb 2025 07:08:42 -0700 Subject: [PATCH 11/11] Release 2.2.2 --- CHANGELOG.md | 10 +++++++++- NOTICE | 4 ++-- docs/Doxyfile | 2 +- library.properties | 2 +- src/NimBLE2904.cpp | 2 +- src/NimBLE2904.h | 2 +- src/NimBLEAddress.cpp | 2 +- src/NimBLEAddress.h | 2 +- src/NimBLEAdvertisedDevice.cpp | 2 +- src/NimBLEAdvertisedDevice.h | 2 +- src/NimBLEAdvertisementData.cpp | 2 +- src/NimBLEAdvertisementData.h | 2 +- src/NimBLEAdvertising.cpp | 2 +- src/NimBLEAdvertising.h | 2 +- src/NimBLEAttValue.cpp | 2 +- src/NimBLEAttValue.h | 2 +- src/NimBLEAttribute.h | 2 +- src/NimBLEBeacon.cpp | 2 +- src/NimBLEBeacon.h | 2 +- src/NimBLECharacteristic.cpp | 2 +- src/NimBLECharacteristic.h | 2 +- src/NimBLEClient.cpp | 2 +- src/NimBLEClient.h | 2 +- src/NimBLEConnInfo.h | 2 +- src/NimBLEDescriptor.cpp | 2 +- src/NimBLEDescriptor.h | 2 +- src/NimBLEDevice.cpp | 2 +- src/NimBLEDevice.h | 2 +- src/NimBLEEddystoneTLM.cpp | 2 +- src/NimBLEEddystoneTLM.h | 2 +- src/NimBLEExtAdvertising.cpp | 2 +- src/NimBLEExtAdvertising.h | 2 +- src/NimBLEHIDDevice.cpp | 2 +- src/NimBLEHIDDevice.h | 2 +- src/NimBLELocalAttribute.h | 2 +- src/NimBLELocalValueAttribute.h | 2 +- src/NimBLELog.h | 2 +- src/NimBLERemoteCharacteristic.cpp | 2 +- src/NimBLERemoteCharacteristic.h | 2 +- src/NimBLERemoteDescriptor.cpp | 2 +- src/NimBLERemoteDescriptor.h | 2 +- src/NimBLERemoteService.cpp | 2 +- src/NimBLERemoteService.h | 2 +- src/NimBLERemoteValueAttribute.cpp | 2 +- src/NimBLERemoteValueAttribute.h | 2 +- src/NimBLEScan.cpp | 2 +- src/NimBLEScan.h | 2 +- src/NimBLEServer.cpp | 2 +- src/NimBLEServer.h | 2 +- src/NimBLEService.cpp | 2 +- src/NimBLEService.h | 2 +- src/NimBLEUUID.cpp | 2 +- src/NimBLEUUID.h | 2 +- src/NimBLEUtils.cpp | 2 +- src/NimBLEUtils.h | 2 +- 55 files changed, 64 insertions(+), 56 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 0658224f..23ffcb3e 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,14 @@ # Changelog All notable changes to this project will be documented in this file. +## [2.2.2] 2025-02-24 + +## Fixed +- Crash when calling `NimBLEClient::DiscoverAttributes`. + +## Added +- `NimBLEDeviceCallbacks` class with a callback for handling bond storage. + ## [2.2.1] 2025-01-26 ## Fixed @@ -14,7 +22,7 @@ All notable changes to this project will be documented in this file. - Crash when retrieving descriptors if more than one exists. - Incorrect TX power value being advertised. - New user guide code for 2.x -- Potential race condition if `NimBLEScan::clearResults1 is called from multiple tasks. +- Potential race condition if `NimBLEScan::clearResults` is called from multiple tasks. ## Changed - If privacy is not enabled identity keys will not be shared. diff --git a/NOTICE b/NOTICE index a2ef0076..248e3421 100644 --- a/NOTICE +++ b/NOTICE @@ -1,9 +1,9 @@ esp-nimble-cpp NimBLE-Arduino -Copyright 2020-2024 Ryan Powell and +Copyright 2020-2025 Ryan Powell and esp-nimble-cpp, NimBLE-Arduino contributors. -The Initial Developer of some parts of this library, which are copied from, +The Initial Developer of some parts of this library, which are copied from, derived from, or inspired by is, esp32-snippets, Copyright 2017 Neil Kolban. If this library is used for commercial purposes, it is requested that the user consider diff --git a/docs/Doxyfile b/docs/Doxyfile index 5d47ce84..f836357b 100644 --- a/docs/Doxyfile +++ b/docs/Doxyfile @@ -48,7 +48,7 @@ PROJECT_NAME = NimBLE-Arduino # could be handy for archiving the generated documentation or if some version # control system is used. -PROJECT_NUMBER = 2.2.1 +PROJECT_NUMBER = 2.2.2 # Using the PROJECT_BRIEF tag one can provide an optional one line description # for a project that appears at the top of each page and should give viewer a # quick idea about the purpose of the project. Keep the description short. diff --git a/library.properties b/library.properties index d17a296b..007f5827 100644 --- a/library.properties +++ b/library.properties @@ -1,5 +1,5 @@ name=NimBLE-Arduino -version=2.2.1 +version=2.2.2 author=h2zero maintainer=Ryan Powell sentence=Bluetooth low energy (BLE) library for Arduino based on NimBLE. diff --git a/src/NimBLE2904.cpp b/src/NimBLE2904.cpp index 5a6b3eed..b53455f9 100644 --- a/src/NimBLE2904.cpp +++ b/src/NimBLE2904.cpp @@ -1,5 +1,5 @@ /* - * Copyright 2020-2024 Ryan Powell and + * Copyright 2020-2025 Ryan Powell and * esp-nimble-cpp, NimBLE-Arduino contributors. * * Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/src/NimBLE2904.h b/src/NimBLE2904.h index a958b660..b26f236f 100644 --- a/src/NimBLE2904.h +++ b/src/NimBLE2904.h @@ -1,5 +1,5 @@ /* - * Copyright 2020-2024 Ryan Powell and + * Copyright 2020-2025 Ryan Powell and * esp-nimble-cpp, NimBLE-Arduino contributors. * * Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/src/NimBLEAddress.cpp b/src/NimBLEAddress.cpp index 16b14821..e67d3a95 100644 --- a/src/NimBLEAddress.cpp +++ b/src/NimBLEAddress.cpp @@ -1,5 +1,5 @@ /* - * Copyright 2020-2024 Ryan Powell and + * Copyright 2020-2025 Ryan Powell and * esp-nimble-cpp, NimBLE-Arduino contributors. * * Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/src/NimBLEAddress.h b/src/NimBLEAddress.h index f357e382..3ec484bb 100644 --- a/src/NimBLEAddress.h +++ b/src/NimBLEAddress.h @@ -1,5 +1,5 @@ /* - * Copyright 2020-2024 Ryan Powell and + * Copyright 2020-2025 Ryan Powell and * esp-nimble-cpp, NimBLE-Arduino contributors. * * Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/src/NimBLEAdvertisedDevice.cpp b/src/NimBLEAdvertisedDevice.cpp index 71007ba5..dc2127bf 100644 --- a/src/NimBLEAdvertisedDevice.cpp +++ b/src/NimBLEAdvertisedDevice.cpp @@ -1,5 +1,5 @@ /* - * Copyright 2020-2024 Ryan Powell and + * Copyright 2020-2025 Ryan Powell and * esp-nimble-cpp, NimBLE-Arduino contributors. * * Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/src/NimBLEAdvertisedDevice.h b/src/NimBLEAdvertisedDevice.h index 4b7da39a..dd9dcccd 100644 --- a/src/NimBLEAdvertisedDevice.h +++ b/src/NimBLEAdvertisedDevice.h @@ -1,5 +1,5 @@ /* - * Copyright 2020-2024 Ryan Powell and + * Copyright 2020-2025 Ryan Powell and * esp-nimble-cpp, NimBLE-Arduino contributors. * * Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/src/NimBLEAdvertisementData.cpp b/src/NimBLEAdvertisementData.cpp index 3474ecc6..ed5152b7 100644 --- a/src/NimBLEAdvertisementData.cpp +++ b/src/NimBLEAdvertisementData.cpp @@ -1,5 +1,5 @@ /* - * Copyright 2020-2024 Ryan Powell and + * Copyright 2020-2025 Ryan Powell and * esp-nimble-cpp, NimBLE-Arduino contributors. * * Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/src/NimBLEAdvertisementData.h b/src/NimBLEAdvertisementData.h index 86f47505..9d8fe7eb 100644 --- a/src/NimBLEAdvertisementData.h +++ b/src/NimBLEAdvertisementData.h @@ -1,5 +1,5 @@ /* - * Copyright 2020-2024 Ryan Powell and + * Copyright 2020-2025 Ryan Powell and * esp-nimble-cpp, NimBLE-Arduino contributors. * * Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/src/NimBLEAdvertising.cpp b/src/NimBLEAdvertising.cpp index 5dd534ea..8d2a892f 100644 --- a/src/NimBLEAdvertising.cpp +++ b/src/NimBLEAdvertising.cpp @@ -1,5 +1,5 @@ /* - * Copyright 2020-2024 Ryan Powell and + * Copyright 2020-2025 Ryan Powell and * esp-nimble-cpp, NimBLE-Arduino contributors. * * Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/src/NimBLEAdvertising.h b/src/NimBLEAdvertising.h index 217a5b76..2f2dd118 100644 --- a/src/NimBLEAdvertising.h +++ b/src/NimBLEAdvertising.h @@ -1,5 +1,5 @@ /* - * Copyright 2020-2024 Ryan Powell and + * Copyright 2020-2025 Ryan Powell and * esp-nimble-cpp, NimBLE-Arduino contributors. * * Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/src/NimBLEAttValue.cpp b/src/NimBLEAttValue.cpp index 5c29d8c5..45503359 100644 --- a/src/NimBLEAttValue.cpp +++ b/src/NimBLEAttValue.cpp @@ -1,5 +1,5 @@ /* - * Copyright 2020-2024 Ryan Powell and + * Copyright 2020-2025 Ryan Powell and * esp-nimble-cpp, NimBLE-Arduino contributors. * * Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/src/NimBLEAttValue.h b/src/NimBLEAttValue.h index dd742879..3354fc57 100644 --- a/src/NimBLEAttValue.h +++ b/src/NimBLEAttValue.h @@ -1,5 +1,5 @@ /* - * Copyright 2020-2024 Ryan Powell and + * Copyright 2020-2025 Ryan Powell and * esp-nimble-cpp, NimBLE-Arduino contributors. * * Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/src/NimBLEAttribute.h b/src/NimBLEAttribute.h index f13a3565..8fd7c774 100644 --- a/src/NimBLEAttribute.h +++ b/src/NimBLEAttribute.h @@ -1,5 +1,5 @@ /* - * Copyright 2020-2024 Ryan Powell and + * Copyright 2020-2025 Ryan Powell and * esp-nimble-cpp, NimBLE-Arduino contributors. * * Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/src/NimBLEBeacon.cpp b/src/NimBLEBeacon.cpp index 20e4fc26..80ab6a05 100644 --- a/src/NimBLEBeacon.cpp +++ b/src/NimBLEBeacon.cpp @@ -1,5 +1,5 @@ /* - * Copyright 2020-2024 Ryan Powell and + * Copyright 2020-2025 Ryan Powell and * esp-nimble-cpp, NimBLE-Arduino contributors. * * Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/src/NimBLEBeacon.h b/src/NimBLEBeacon.h index 618b0115..6ca2a763 100644 --- a/src/NimBLEBeacon.h +++ b/src/NimBLEBeacon.h @@ -1,5 +1,5 @@ /* - * Copyright 2020-2024 Ryan Powell and + * Copyright 2020-2025 Ryan Powell and * esp-nimble-cpp, NimBLE-Arduino contributors. * * Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/src/NimBLECharacteristic.cpp b/src/NimBLECharacteristic.cpp index 43b9f74b..569e00bc 100644 --- a/src/NimBLECharacteristic.cpp +++ b/src/NimBLECharacteristic.cpp @@ -1,5 +1,5 @@ /* - * Copyright 2020-2024 Ryan Powell and + * Copyright 2020-2025 Ryan Powell and * esp-nimble-cpp, NimBLE-Arduino contributors. * * Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/src/NimBLECharacteristic.h b/src/NimBLECharacteristic.h index 01d34e4a..3ada23ae 100644 --- a/src/NimBLECharacteristic.h +++ b/src/NimBLECharacteristic.h @@ -1,5 +1,5 @@ /* - * Copyright 2020-2024 Ryan Powell and + * Copyright 2020-2025 Ryan Powell and * esp-nimble-cpp, NimBLE-Arduino contributors. * * Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/src/NimBLEClient.cpp b/src/NimBLEClient.cpp index 301ef79a..ef3c85d1 100644 --- a/src/NimBLEClient.cpp +++ b/src/NimBLEClient.cpp @@ -1,5 +1,5 @@ /* - * Copyright 2020-2024 Ryan Powell and + * Copyright 2020-2025 Ryan Powell and * esp-nimble-cpp, NimBLE-Arduino contributors. * * Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/src/NimBLEClient.h b/src/NimBLEClient.h index d193f7d7..04063464 100644 --- a/src/NimBLEClient.h +++ b/src/NimBLEClient.h @@ -1,5 +1,5 @@ /* - * Copyright 2020-2024 Ryan Powell and + * Copyright 2020-2025 Ryan Powell and * esp-nimble-cpp, NimBLE-Arduino contributors. * * Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/src/NimBLEConnInfo.h b/src/NimBLEConnInfo.h index 76959b8e..c89b7dff 100644 --- a/src/NimBLEConnInfo.h +++ b/src/NimBLEConnInfo.h @@ -1,5 +1,5 @@ /* - * Copyright 2020-2024 Ryan Powell and + * Copyright 2020-2025 Ryan Powell and * esp-nimble-cpp, NimBLE-Arduino contributors. * * Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/src/NimBLEDescriptor.cpp b/src/NimBLEDescriptor.cpp index 5301a8b7..cc1b405a 100644 --- a/src/NimBLEDescriptor.cpp +++ b/src/NimBLEDescriptor.cpp @@ -1,5 +1,5 @@ /* - * Copyright 2020-2024 Ryan Powell and + * Copyright 2020-2025 Ryan Powell and * esp-nimble-cpp, NimBLE-Arduino contributors. * * Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/src/NimBLEDescriptor.h b/src/NimBLEDescriptor.h index b4bcd38f..c194a5d9 100644 --- a/src/NimBLEDescriptor.h +++ b/src/NimBLEDescriptor.h @@ -1,5 +1,5 @@ /* - * Copyright 2020-2024 Ryan Powell and + * Copyright 2020-2025 Ryan Powell and * esp-nimble-cpp, NimBLE-Arduino contributors. * * Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/src/NimBLEDevice.cpp b/src/NimBLEDevice.cpp index 05019cf7..427ad3eb 100644 --- a/src/NimBLEDevice.cpp +++ b/src/NimBLEDevice.cpp @@ -1,5 +1,5 @@ /* - * Copyright 2020-2024 Ryan Powell and + * Copyright 2020-2025 Ryan Powell and * esp-nimble-cpp, NimBLE-Arduino contributors. * * Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/src/NimBLEDevice.h b/src/NimBLEDevice.h index ad597678..5ec10c9f 100644 --- a/src/NimBLEDevice.h +++ b/src/NimBLEDevice.h @@ -1,5 +1,5 @@ /* - * Copyright 2020-2024 Ryan Powell and + * Copyright 2020-2025 Ryan Powell and * esp-nimble-cpp, NimBLE-Arduino contributors. * * Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/src/NimBLEEddystoneTLM.cpp b/src/NimBLEEddystoneTLM.cpp index d7108102..3d398806 100644 --- a/src/NimBLEEddystoneTLM.cpp +++ b/src/NimBLEEddystoneTLM.cpp @@ -1,5 +1,5 @@ /* - * Copyright 2020-2024 Ryan Powell and + * Copyright 2020-2025 Ryan Powell and * esp-nimble-cpp, NimBLE-Arduino contributors. * * Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/src/NimBLEEddystoneTLM.h b/src/NimBLEEddystoneTLM.h index 8e60a041..2881a89f 100644 --- a/src/NimBLEEddystoneTLM.h +++ b/src/NimBLEEddystoneTLM.h @@ -1,5 +1,5 @@ /* - * Copyright 2020-2024 Ryan Powell and + * Copyright 2020-2025 Ryan Powell and * esp-nimble-cpp, NimBLE-Arduino contributors. * * Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/src/NimBLEExtAdvertising.cpp b/src/NimBLEExtAdvertising.cpp index 16d5a9ed..38c37d7d 100644 --- a/src/NimBLEExtAdvertising.cpp +++ b/src/NimBLEExtAdvertising.cpp @@ -1,5 +1,5 @@ /* - * Copyright 2020-2024 Ryan Powell and + * Copyright 2020-2025 Ryan Powell and * esp-nimble-cpp, NimBLE-Arduino contributors. * * Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/src/NimBLEExtAdvertising.h b/src/NimBLEExtAdvertising.h index 463eaa31..f5031eb5 100644 --- a/src/NimBLEExtAdvertising.h +++ b/src/NimBLEExtAdvertising.h @@ -1,5 +1,5 @@ /* - * Copyright 2020-2024 Ryan Powell and + * Copyright 2020-2025 Ryan Powell and * esp-nimble-cpp, NimBLE-Arduino contributors. * * Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/src/NimBLEHIDDevice.cpp b/src/NimBLEHIDDevice.cpp index d6565217..38a11c3a 100644 --- a/src/NimBLEHIDDevice.cpp +++ b/src/NimBLEHIDDevice.cpp @@ -1,5 +1,5 @@ /* - * Copyright 2020-2024 Ryan Powell and + * Copyright 2020-2025 Ryan Powell and * esp-nimble-cpp, NimBLE-Arduino contributors. * * Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/src/NimBLEHIDDevice.h b/src/NimBLEHIDDevice.h index 1494daf0..50d3362b 100644 --- a/src/NimBLEHIDDevice.h +++ b/src/NimBLEHIDDevice.h @@ -1,5 +1,5 @@ /* - * Copyright 2020-2024 Ryan Powell and + * Copyright 2020-2025 Ryan Powell and * esp-nimble-cpp, NimBLE-Arduino contributors. * * Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/src/NimBLELocalAttribute.h b/src/NimBLELocalAttribute.h index 6aafc43b..09707d5c 100644 --- a/src/NimBLELocalAttribute.h +++ b/src/NimBLELocalAttribute.h @@ -1,5 +1,5 @@ /* - * Copyright 2020-2024 Ryan Powell and + * Copyright 2020-2025 Ryan Powell and * esp-nimble-cpp, NimBLE-Arduino contributors. * * Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/src/NimBLELocalValueAttribute.h b/src/NimBLELocalValueAttribute.h index fed17ad9..55b03fcc 100644 --- a/src/NimBLELocalValueAttribute.h +++ b/src/NimBLELocalValueAttribute.h @@ -1,5 +1,5 @@ /* - * Copyright 2020-2024 Ryan Powell and + * Copyright 2020-2025 Ryan Powell and * esp-nimble-cpp, NimBLE-Arduino contributors. * * Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/src/NimBLELog.h b/src/NimBLELog.h index ec8a0f08..e3137ad0 100644 --- a/src/NimBLELog.h +++ b/src/NimBLELog.h @@ -1,5 +1,5 @@ /* - * Copyright 2020-2024 Ryan Powell and + * Copyright 2020-2025 Ryan Powell and * esp-nimble-cpp, NimBLE-Arduino contributors. * * Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/src/NimBLERemoteCharacteristic.cpp b/src/NimBLERemoteCharacteristic.cpp index b994e1a2..dc8e73a2 100644 --- a/src/NimBLERemoteCharacteristic.cpp +++ b/src/NimBLERemoteCharacteristic.cpp @@ -1,5 +1,5 @@ /* - * Copyright 2020-2024 Ryan Powell and + * Copyright 2020-2025 Ryan Powell and * esp-nimble-cpp, NimBLE-Arduino contributors. * * Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/src/NimBLERemoteCharacteristic.h b/src/NimBLERemoteCharacteristic.h index 109d8d0d..fd5749f9 100644 --- a/src/NimBLERemoteCharacteristic.h +++ b/src/NimBLERemoteCharacteristic.h @@ -1,5 +1,5 @@ /* - * Copyright 2020-2024 Ryan Powell and + * Copyright 2020-2025 Ryan Powell and * esp-nimble-cpp, NimBLE-Arduino contributors. * * Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/src/NimBLERemoteDescriptor.cpp b/src/NimBLERemoteDescriptor.cpp index 14283fdf..a56b91a8 100644 --- a/src/NimBLERemoteDescriptor.cpp +++ b/src/NimBLERemoteDescriptor.cpp @@ -1,5 +1,5 @@ /* - * Copyright 2020-2024 Ryan Powell and + * Copyright 2020-2025 Ryan Powell and * esp-nimble-cpp, NimBLE-Arduino contributors. * * Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/src/NimBLERemoteDescriptor.h b/src/NimBLERemoteDescriptor.h index 9d2a1714..817033df 100644 --- a/src/NimBLERemoteDescriptor.h +++ b/src/NimBLERemoteDescriptor.h @@ -1,5 +1,5 @@ /* - * Copyright 2020-2024 Ryan Powell and + * Copyright 2020-2025 Ryan Powell and * esp-nimble-cpp, NimBLE-Arduino contributors. * * Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/src/NimBLERemoteService.cpp b/src/NimBLERemoteService.cpp index c131af74..06fb91af 100644 --- a/src/NimBLERemoteService.cpp +++ b/src/NimBLERemoteService.cpp @@ -1,5 +1,5 @@ /* - * Copyright 2020-2024 Ryan Powell and + * Copyright 2020-2025 Ryan Powell and * esp-nimble-cpp, NimBLE-Arduino contributors. * * Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/src/NimBLERemoteService.h b/src/NimBLERemoteService.h index 8045788b..fad35fb0 100644 --- a/src/NimBLERemoteService.h +++ b/src/NimBLERemoteService.h @@ -1,5 +1,5 @@ /* - * Copyright 2020-2024 Ryan Powell and + * Copyright 2020-2025 Ryan Powell and * esp-nimble-cpp, NimBLE-Arduino contributors. * * Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/src/NimBLERemoteValueAttribute.cpp b/src/NimBLERemoteValueAttribute.cpp index d8bfd6b4..1de2940f 100644 --- a/src/NimBLERemoteValueAttribute.cpp +++ b/src/NimBLERemoteValueAttribute.cpp @@ -1,5 +1,5 @@ /* - * Copyright 2020-2024 Ryan Powell and + * Copyright 2020-2025 Ryan Powell and * esp-nimble-cpp, NimBLE-Arduino contributors. * * Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/src/NimBLERemoteValueAttribute.h b/src/NimBLERemoteValueAttribute.h index c3a20e08..b722c741 100644 --- a/src/NimBLERemoteValueAttribute.h +++ b/src/NimBLERemoteValueAttribute.h @@ -1,5 +1,5 @@ /* - * Copyright 2020-2024 Ryan Powell and + * Copyright 2020-2025 Ryan Powell and * esp-nimble-cpp, NimBLE-Arduino contributors. * * Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/src/NimBLEScan.cpp b/src/NimBLEScan.cpp index 60e7db26..af0dd714 100644 --- a/src/NimBLEScan.cpp +++ b/src/NimBLEScan.cpp @@ -1,5 +1,5 @@ /* - * Copyright 2020-2024 Ryan Powell and + * Copyright 2020-2025 Ryan Powell and * esp-nimble-cpp, NimBLE-Arduino contributors. * * Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/src/NimBLEScan.h b/src/NimBLEScan.h index 6194a5c7..2546cdb1 100644 --- a/src/NimBLEScan.h +++ b/src/NimBLEScan.h @@ -1,5 +1,5 @@ /* - * Copyright 2020-2024 Ryan Powell and + * Copyright 2020-2025 Ryan Powell and * esp-nimble-cpp, NimBLE-Arduino contributors. * * Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/src/NimBLEServer.cpp b/src/NimBLEServer.cpp index 5b01a776..7e10ea28 100644 --- a/src/NimBLEServer.cpp +++ b/src/NimBLEServer.cpp @@ -1,5 +1,5 @@ /* - * Copyright 2020-2024 Ryan Powell and + * Copyright 2020-2025 Ryan Powell and * esp-nimble-cpp, NimBLE-Arduino contributors. * * Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/src/NimBLEServer.h b/src/NimBLEServer.h index 2696995a..4eb7962b 100644 --- a/src/NimBLEServer.h +++ b/src/NimBLEServer.h @@ -1,5 +1,5 @@ /* - * Copyright 2020-2024 Ryan Powell and + * Copyright 2020-2025 Ryan Powell and * esp-nimble-cpp, NimBLE-Arduino contributors. * * Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/src/NimBLEService.cpp b/src/NimBLEService.cpp index 49eef018..8304d1ff 100644 --- a/src/NimBLEService.cpp +++ b/src/NimBLEService.cpp @@ -1,5 +1,5 @@ /* - * Copyright 2020-2024 Ryan Powell and + * Copyright 2020-2025 Ryan Powell and * esp-nimble-cpp, NimBLE-Arduino contributors. * * Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/src/NimBLEService.h b/src/NimBLEService.h index 80e9dea1..cbee352b 100644 --- a/src/NimBLEService.h +++ b/src/NimBLEService.h @@ -1,5 +1,5 @@ /* - * Copyright 2020-2024 Ryan Powell and + * Copyright 2020-2025 Ryan Powell and * esp-nimble-cpp, NimBLE-Arduino contributors. * * Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/src/NimBLEUUID.cpp b/src/NimBLEUUID.cpp index c947648c..df31766d 100644 --- a/src/NimBLEUUID.cpp +++ b/src/NimBLEUUID.cpp @@ -1,5 +1,5 @@ /* - * Copyright 2020-2024 Ryan Powell and + * Copyright 2020-2025 Ryan Powell and * esp-nimble-cpp, NimBLE-Arduino contributors. * * Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/src/NimBLEUUID.h b/src/NimBLEUUID.h index 32f625c1..708b34b6 100644 --- a/src/NimBLEUUID.h +++ b/src/NimBLEUUID.h @@ -1,5 +1,5 @@ /* - * Copyright 2020-2024 Ryan Powell and + * Copyright 2020-2025 Ryan Powell and * esp-nimble-cpp, NimBLE-Arduino contributors. * * Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/src/NimBLEUtils.cpp b/src/NimBLEUtils.cpp index 6e9f771e..9b3db059 100644 --- a/src/NimBLEUtils.cpp +++ b/src/NimBLEUtils.cpp @@ -1,5 +1,5 @@ /* - * Copyright 2020-2024 Ryan Powell and + * Copyright 2020-2025 Ryan Powell and * esp-nimble-cpp, NimBLE-Arduino contributors. * * Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/src/NimBLEUtils.h b/src/NimBLEUtils.h index e56f568e..fa9482dc 100644 --- a/src/NimBLEUtils.h +++ b/src/NimBLEUtils.h @@ -1,5 +1,5 @@ /* - * Copyright 2020-2024 Ryan Powell and + * Copyright 2020-2025 Ryan Powell and * esp-nimble-cpp, NimBLE-Arduino contributors. * * Licensed under the Apache License, Version 2.0 (the "License");