All notable changes to this project will be documented in this file.
- Compile error when only advertising role is enabled.
- Possible crash if bonded client reconnects.
NimBLEHIDDevice
can now create more than one in/out/feature report map.
NimBLEHIDDevice::getOutputReport
will now return the correct characteristic.- Compile error when central is disabled, class
NimBLEServer
has no member namedm_pClient
. - Compile error with nRF devices, unresolved symbol
nimble_port_stop
.
- Added missing includes for
NimBLEConnInfo
andNimBLEUtils
toNimBLEDevice.h
.
- NimBLESecurity class removed.
- All connection oriented callbacks now receive a reference to
NimBLEConnInfo
, theble_gap_conn_desc
has also been replace withNimBLEConnInfo
in the functions that received it. - All functions that take a time input parameter now expect the value to be in milliseconds instead of seconds.
NimBLEDevice
Ignore list functions removed.NimBLEDevice::startSecurity
now returns abool
, true on success, instead of an int to be consistent with the rest of the library.NimBLEDevice::getInitialized
renamed toNimBLEDevice::isInitialized
.NimBLEDevice::setPower
no longer takes theesp_power_level_t
andesp_ble_power_type_t
, instead only an integer value in dbm units is accepted.NimBLEDevice::setOwnAddrType
no longer takes abool nrpa
parameter.NimBLEDevice::getClientListSize
replaced withNimBLEDevice::getCreatedClientCount
.NimBLEDevice::getClientList
was removed.NimBLEServer::disconnect
now returnsbool
, true = success, instead ofint
to be consistent with the rest of the library.NimBLEServer::getPeerIDInfo
renamed toNimBLEServer::getPeerInfoByHandle
to better describe it's use.NimBLEServerCallbacks::onMTUChanged
renamed toNimBLEServerCallbacks::onMTUChange
to be consistent with the client callback.NimBLEServerCallbacks::onPassKeyRequest
has been replaced withNimBLEServer::onPassKeyDisplay
which should display the pairing pin that the client is expected to send.NimBLEServerCallbacks::onAuthenticationComplete
now takes aNimBLEConnInfo&
parameter.NimBLEClient::getServices
now returns a const reference to std::vector<NimBLERemoteService*> instead of a pointer to the internal vector.NimBLEClient::getConnId
has been renamed togetConnHandle
to be consistent with bluetooth terminology.NimBLEClient::disconnect
now returns abool
, true on success, instead of an int to be consistent with the rest of the library.NimBLEClientCallbacks::onDisconnect
now takes an additionalint reason
parameter to let the application know why the disconnect occurred.NimBLEClientCallbacks::onPassKeyRequest
has been changed toNimBLEClientCallbacks::onPassKeyEntry
which takes aNimBLEConnInfo&
parameter and does not return a value. Instead or returning a value this callback should prompt a user to enter a pin number which is sent later viaNimBLEDevice::injectPassKey
.NimBLEClientCallbacks::onConfirmPIN
renamed toNimBLEClientCallbacks::onConfirmPasskey
and no longer returns a value and now takes aNimBLEConnInfo&
parameter. This should be used to prompt a user to confirm the pin on the display (YES/NO) after which the response should be sent withNimBLEDevice::injectConfirmPasskey
.NimBLEAdvertising::setMinPreferred
andNimBLEAdvertising::setMaxPreferred
have been removed, useNimBLEAdvertising::setPreferredParams
instead.- Advertising the name and TX power of the device will no longer happen by default and should be set manually by the application.
NimBLEAdvertising::setAdvertisementType
has been renamed toNimBLEAdvertising::setConnectableMode
to better reflect it's function.NimBLEAdvertising::setScanResponse
has been renamed toNimBLEAdvertising::enableScanResponse
to better reflect it's function.NimBLEAdvertising
; Scan response is no longer enabled by default.NimBLEAdvertising::start
No longer takes a callback pointer parameter, instead the new methodNimBLEAdvertising::setAdvertisingCompleteCallback
should be used.NimBLEAdvertisementData::addData
now takes either astd::vector<uint8_t>
oruint8_t* + length
instead ofstd::string
orchar + length
.NimBLEAdvertisementData::getPayload
now returnsstd::vector<uint8_t>
instead ofstd::string
.- The callback parameter for
NimBLEScan::start
has been removed and the blocking overload ofNimBLEScan::start
has been replaced by an overload ofNimBLEScan::getResults
with the same parameters. NimBLEAdvertisedDeviceCallbacks
Has been replaced byNimBLEScanCallbacks
which contains the following methods:onResult
,onScanEnd
, and `onDiscovered-
NimBLEScanCallbacks::onResult
, functions the same as the oldNimBLEAdvertisedDeviceCallbacks::onResult
but now takes aaconst NimBLEAdvertisedDevice*
instead of non-const.
-
NimBLEScanCallbacks::onScanEnd
, replaces the scanEnded callback passed toNimBLEScan::start
and now takes aconst NimBLEScanResults&
andint reason
parameter.
-
NimBLEScanCallbacks::onDiscovered
, This is called immediately when a device is first scanned, before any scan response data is available and takes aconst NimBLEAdvertisedDevice*
parameter.
NimBLEScan::stop
will no longer call theonScanEnd
callback as the caller should know its been stopped when this is called.NimBLEScan::clearDuplicateCache
has been removed as it was problematic and only for the esp32. Stop and start the scanner for the same effect.NimBLEScanResults::getDevice
methods now returnconst NimBLEAdvertisedDevice*
.NimBLEScanResults
iterators are nowconst_iterator
.NimBLEService::getCharacteristics
now returns aconst std::vector<NimBLECharacteristic*>&
instead of std::vector<NimBLECharacteristic *>.NimBLECharacteristic::notify
no longer takes abool is_notification
parameter, insteadindicate()
should be called to send indications.NimBLECharacteristicCallbacks::onNotify
removed as unnecessary, the library does not call notify without app input.NimBLECharacteristicCallbacks::onStatus
No longer takes astatus
parameter, refer to the return code for success/failure.NimBLERemoteService::getCharacteristics
now returns aconst std::vector<NimBLERemoteCharacteristic*>&
instead of non-conststd::vector<NimBLERemoteCharacteristic*>*
.NimBLERemoteService::getValue
now returnsNimBLEAttValue
instead ofstd::string
.NimBLERemoteCharacteristic::getRemoteService
now returns aconst NimBLERemoteService*
instead of non-const.NimBLERemoteCharacteristic::readUInt32
Has been removed.NimBLERemoteCharacteristic::readUInt16
Has been removed.NimBLERemoteCharacteristic::readUInt8
Has been removed.NimBLERemoteCharacteristic::readFloat
Has been removed.NimBLERemoteCharacteristic::registerForNotify
Has been removed.NimBLEAdvertisedDevice::hasRSSI
removed as redundant, RSSI is always available.NimBLEAdvertisedDevice::getPayload
now returnsconst std::vector<uint8_t>
instead of a pointer to internal memory.NimBLEAdvertisedDevice
Timestamp removed, if needed then the app should track the time from the callback.NimBLEAddress
constructor; default value for thetype
parameter removed, caller should know the address type and specify it.NimBLEAddress::getNative
replaced withNimBLEAddress::getBase
and now returns a pointer toconst ble_addr_t
instead of a pointer to the address value.NimBLEAddress::equals
method andNimBLEAddress::== operator
will now also test if the address types are the same.NimBLEUUID::getNative
method replaced withNimBLEUUID::getBase
which returns a read-only pointer to the underlyingble_uuid_t
struct.NimBLEUUID
;msbFirst
parameter has been removed from constructor, caller should reverse the data first or call the newreverseByteOrder
method after.NimBLEUtils::dumpGapEvent
function removed.NimBLEUtils::buildHexData
replaced withNimBLEUtils::dataToHexString
, which returns astd::string
containing the hex string.- Removed Eddystone URL as it has been shutdown by google since 2021.
NimBLEEddystoneTLM::setTemp
now takes anint16_t
parameter instead of float to be friendly to devices without floating point support.NimBLEEddystoneTLM::getTemp
now returnsint16_t
to work with devices that don't have floating point support.NimBLEEddystoneTLM::setData
now takes a reference to *NimBLEEddystoneTLM::BeaconData
instead ofstd::string
.NimBLEEddystoneTLM::getData
now returns a reference to *NimBLEEddystoneTLM::BeaconData
instead ofstd::string
.NimBLEBeacon::setData
now takesconst NimBLEBeacon::BeaconData&
instead ofstd::string
.NimBLEBeacon::getData
now returnsconst NimBLEBeacon::BeaconData&
instead ofstd::string
.NimBLEHIDDevice::reportMap
renamed toNimBLEHIDDevice::getReportMap
.NimBLEHIDDevice::hidControl
renamed toNimBLEHIDDevice::getHidControl
.NimBLEHIDDevice::inputReport
renamed toNimBLEHIDDevice::getInputReport
.NimBLEHIDDevice::outputReport
renamed toNimBLEHIDDevice::getOutputReport
.NimBLEHIDDevice::featureReport
renamed toNimBLEHIDDevice::getFeatureReport
.NimBLEHIDDevice::protocolMode
renamed toNimBLEHIDDevice::getProtocolMode
.NimBLEHIDDevice::bootOutput
renamed toNimBLEHIDDevice::getBootOutput
.NimBLEHIDDevice::pnp
renamed toNimBLEHIDDevice::setPnp
.NimBLEHIDDevice::hidInfo
renamed toNimBLEHIDDevice::setHidInfo
.NimBLEHIDDevice::deviceInfo
renamed toNimBLEHIDDevice::getDeviceInfoService
.NimBLEHIDDevice::hidService
renamed toNimBLEHIDDevice::getHidService
.NimBLEHIDDevice::batteryService
renamed toNimBLEHIDDevice::getBatteryService
.
NimBLEDevice::getPower
andNimBLEDevice::getPowerLevel
bug worked around for the esp32s3 and esp32c3.NimBLEDevice::setPower
andNimBLEDevice::getPower
now support the full power range for all esp devices.NimBLEDevice::setOwnAddrType
will now correctly apply the provided address type for all devices.NimBLEDevice::getPower
(esp32) return value is now calculated to support devices with different min/max ranges.- Crash if
NimBLEDevice::deinit
is called when the stack has not been initialized. NimBLEServer
service changed notifications will now wait until the changes have taken effect and the server re-started before indicating the change to peers, reducing difficultly for some clients to update their data.NimBLEService::getHandle
will now fetch the handle from the stack if not valid to avoid returning an invalid value.std::vector
input to set/write values template.- Pairing failing when the process was started by the peer first.
NimBLEClient::secureConnection
now takes an additional parameterbool async
, if true, will send the secure command and return immediately with a true value for successfully sending the command, else false. This allows for asynchronously securing a connection.- Deleting the client instance from the
onDisconnect
callback is now supported. NimBLEClient::connect
will no longer cancel already in progress connections.NimBLEClient::setDataLen
now returns bool, true if successful.NimBLEClient::updateConnParams
now returns bool, true if successful.NimBLEClient::setPeerAddress
now returns a bool, true on success.NimBLEDevice::startSecurity
now takes and additional parameterint* rcPtr
which will provide the return code from the stack if provided.NimBLEDevice::deleteClient
no longer blocks tasks.NimBLEDevice::getAddress
will now return the address currently in use.NimBLEDevice::init
now returns a bool withtrue
indicating success.NimBLEDevice::deinit
now returns a bool withtrue
indicating success.NimBLEDevice::setDeviceName
now returns a bool withtrue
indicating success.NimBLEDevice::setCustomGapHandler
now returns a bool withtrue
indicating success.NimBLEDevice::setOwnAddrType
now returns a bool withtrue
indicating success and works with non-esp32 devices.NimBLEDevice::setPower
now returns a bool value, true = success.NimBLEDevice::setMTU
now returns a bool value, true = success.NimBLEDevice::deleteAllBonds
now returns true on success, otherwise false.NimBLEEddystoneTLM
internal data struct typeBeaconData
is now public and usable by the application.NimBLEBeacon
internal data struct typeBeaconData
is now public and can be used by the application.- Removed tracking of client characteristic subscription status from
NimBLEServer
andNimBLECharacteristic
and instead uses the functions and tracking in the host stack. NimBLECharacteristic::indicate
now takes the same parameters asnotify
.NimBLECharacteristic::notify
andNimBLECharacteristic::indicate
now return abool
, true = success.- Added optional
connHandle
parameter toNimBLECharacteristic::notify
to allow for sending notifications to specific clients. NimBLEServer
Now uses a std::array to store client connection handles instead of std::vector to reduce memory allocation.NimBLEExtAdvertisement
; All functions that set data now returnbool
, true = success.NimBLEAdvertising
Advertising data is now stored in instances ofNimBLEAdvertisingData
and old vectors removed.NimBLEAdvertising::setAdvertisementData
andNimBLEAdvertising::setScanResponseData
now returnbool
, true = success.- Added optional
NimBLEAddress
parameter toNimBLEAdvertising::start
to allow for directed advertising to a peer. - All
NimBLEAdvertising
functions that change data values now returnbool
, true = success. - All
NimBLEAdvertisementData
functions that change data values now returnbool
, true = success. NimBLEAdvertisementData::setName
now takes an optionalbool
parameter to indicate if the name is complete or incomplete, default = complete.NimBLEAdvertisementData
moved to it's own .h and .cpp files.NimBLEScan::start
takes a newbool restart
parameter, defaulttrue
, that will restart an already in progress scan and clear the duplicate filter so all devices will be discovered again.- Scan response data that is received without advertisement first will now create the device and send a callback.
NimBLEScan::start
will no longer clear cache or results if scanning is already in progress.NimBLEScan::start
will now allow the start command to be sent with updated parameters if already scanning.NimBLEScan::clearResults
will now reset the vector capacity to 0.- Host reset will now no longer restart scanning and instead will call
NimBLEScanCallbacks::onScanEnd
. - Added optional
index
parameter toNimBLEAdvertisedDevice::getPayloadByType
NimBLEUtils
: Add missing GAP event strings.NimBLEUtils
: Add missing return code strings.NimBLEUtils
: Event/error code strings optimized.NimBLEAttValue
cleanup and optimization.- cleaned up code, removed assert/abort calls, replaced with a configurable option to enable debug asserts.
- (esp32 specific)
NimBLEDevice::setPowerLevel
andNimBLEDevice::getPowerLevel
which take and return the relatedesp_power_level*
types. NimBLEDevice::setDefaultPhy
which will set the default preferred PHY for all connections.NimBLEDevice::getConnectedClients
, which returns a vector of pointers to the currently connected client instances.NimBLEDevice::setOwnAddr
function added, which takes auint8_t*
orNimBLEAddress&
and will set the mac address of the device, returnsbool
true = success.NimBLEDevice::injectPassKey
Used to send the pairing passkey instead of a return value from the client callback.NimBLEDevice::injectConfirmPasskey
Used to send the numeric comparison pairing passkey confirmation instead of a return value from the client callback.NimBLEDevice::setDeviceName
to change the device name after initialization.NimBLECharacteristic::create2904
which will specifically create a Characteristic Presentation Format (0x2904) descriptor.NimBLEAdvertising::refreshAdvertisingData
refreshes the advertisement data while still actively advertising.NimBLEClient::updatePhy
to request a PHY change with a peer.NimBLEClient::getPhy
to read the current connection PHY setting.Config
struct toNimBLEClient
to efficiently set single bit config settings.NimBLEClient::setSelfDelete
that takes the bool parametersdeleteOnDisconnect
anddeleteOnConnectFail
, which will configure the client to delete itself when disconnected or the connection attempt fails.NimBLEClient::setConfig
andNimBLEClient::getConfig
which takes or returns aNimBLEClient::Config
object respectively.NimBLEClient::cancelConnect()
to cancel an in-progress connection, returnsbool
, true = success.- Non-blocking
NimBLEClient::connect
option added via 2 newbool
parameters added to the function: -
asyncConnect
; if true, will send the connect command and return immediately.
-
exchangeMTU
; if true will send the exchange MTU command upon connection.
NimBLEClientCallbacks::onConnectFail
callback that is called when the connection attempt fail while connecting asynchronously.NimBLEClientCallbacks::onMTUChange
callback which will be called when the MTU exchange completes and takes aNimBLEClient*
anduint16_t MTU
parameter.NimBLEClientCallbacks::onPhyUpdate
and -NimBLEServerCallbacks::onPhyUpdate
Which are called when the PHY update is complete.- Extended scan example.
NimBLEServer::updatePhy
to request a PHY change with a peer.NimBLEServer::getPhy
to read the PHY of a peer connection.NimBLEServer::getClient
which will create a client instance from the provided peer connHandle or connInfo to facilitate reading/write from the connected client.NimBLEServerCallbacks::onConnParamsUpdate
callback.NimBLEScan::erase
overload that takes aconst NimBLEAdvertisedDevice*
parameter.NimBLEScan::setScanPhy
to enable/disable the PHY's to scan on (extended advertising only).NimBLEScan::setScanPeriod
which will allow for setting a scan restart timer in the controller (extended advertising only).NimBLEAdvertisedDevice::isScannable()
that returns true if the device is scannable.NimBLEAdvertisedDevice::begin
andNimBLEAdvertisedDevice::end
read-only iterators for convenience and use in range loops.NimBLEAdvertisedDevice::haveType
Generic use function that returns true if the advertisement data contains a field with the specified type.NimBLEExtAdvertisement::removeData
, which will remove the data of the specified type from the advertisement.NimBLEExtAdvertisement::addServiceUUID
, which will append to the service uuids advertised.NimBLEExtAdvertisement::removeServiceUUID
, which will remove the service from the uuids advertised.NimBLEExtAdvertisement::removeServices
, which will remove all service uuids advertised.- New overloads for
NimBLEExtAdvertisement::setServiceData
with the parametersconst NimBLEUUID& uuid, const uint8_t* data, size_t length
andconst NimBLEUUID& uuid, const std::vector<uint8_t>& data
. NimBLEExtAdvertisement::getDataLocation
, which returns the location in the advertisement data of the type requested in parameteruint8_t type
.NimBLEExtAdvertisement::toString
which returns a hex string representation of the advertisement data.NimBLEAdvertising::getAdvertisementData
, which returns a reference to the currently set advertisement data.NimBLEAdvertising::getScanData
, which returns a reference to the currently set scan response data.- New overloads for
NimBLEAdvertising::removeServiceUUID
andNimBLEAdvertisementData::removeServiceUUID
to accept aconst char*
NimBLEAdvertising::setManufacturerData
Overload that takes aconst uint8_t*
and , size_t` parameter.NimBLEAdvertising::setServiceData
Overload that takesconst NimBLEUUID& uuid
,const uint8_t* data
,size_t length
as parameters.NimBLEAdvertising::setServiceData
Overload that takesconst NimBLEUUID& uuid
,const std::vector<uint8_t>&
as parameters.NimBLEAdvertising::setDiscoverableMode
to allow applications to control the discoverability of the advertiser.NimBLEAdvertising::setAdvertisingCompleteCallback
sets the callback to call when advertising ends.NimBLEAdvertising::setPreferredParams
that takes the min and max preferred connection parameters as an alternative forsetMinPreferred
andsetMaxPreferred
.NimBLEAdvertising::setAdvertisingInterval
Sets the advertisement interval for min and max to the same value instead of callingsetMinInterval
andsetMaxInterval
separately if there is not value difference.NimBLEAdvertisementData::removeData
, which takes a parameteruint8_t type
, the data type to remove.NimBLEAdvertisementData::toString
, which will print the data in hex.NimBLEUtils::taskWait
which causes the calling task to wait for an event.NimBLEUtils::taskRelease
releases the task from and event.NimBLEUtils::generateAddr
function added with will generate a random address and takes abool
parameter, true = create non-resolvable private address, otherwise a random static address is created, returnsNimBLEAddress
.NimBLEUUID::getValue
which returns a read-onlyuint8_t
pointer to the UUID value.NimBLEUUID::reverseByteOrder
, this will reverse the bytes of the UUID, which can be useful for advertising/logging.NimBLEUUID
constructor overload that takes a reference toble_uuid_any_t
.NimBLEAddress::isNrpa
method to test if an address is random non-resolvable.NimBLEAddress::isStatic
method to test if an address is random static.NimBLEAddress::isPublic
method to test if an address is a public address.NimBLEAddress::isNull
methods to test if an address is NULL.NimBLEAddress::getValue
method which returns a read-only pointer to the address value.NimBLEAddress::reverseByteOrder
method which will reverse the byte order of the address value.NimBLEHIDDevice::batteryLevel
returns the HID device battery level characteristic.NimBLEBeacon::setData
overload that takesuint8_t* data
anduint8_t length
.NimBLEHIDDevice::getPnp
function added to access the pnp characteristic.NimBLEHIDDevice::getHidInfo
function added to access the hid info characteristic.
- BT5 examples for non-esp devices.
- Build errors when configured as a non-connecting device
- Coded PHY support for nRF52833 and nRF52820
CONFIG_BT_NIMBLE_NVS_PERSIST
value not being used to enable/disable persistance.- Set service handle in
NimBLEService::getHandle
function if not set already. - NimBLE_service_data_advertiser example updated to initialize the advertising pointer after stack initialization.
- Unhandled exception on
NimBLECharacteristic::handleGapEvent
when the connection handle is invalid. NimBLEHIDDevice::pnp
now correctly sets the byte order.NimBLEEddystoneTLM
now correctly sets/gets negative temperatures.- Adding to the whitelist will now allow the device to be added again if the previous attempts failed.
- The IPC calls added to esp_nimble_hci have been removed to prevent IPC stack crashing.
- Espressif log tag renamed from "TAG" to "LOG_TAG" to avoid conflict with Arduino core definition.
- Removed broken links in docs
NimBLEAdvertisedDevice
new method:getAdvFlags
, to read the flags advertised.NimBLEAdvertising::setManufacturerData
new overload method that accepts a vector ofuint8_t
.NimBLEAdvertisementData::setManufacturerData
new overload method that accepts a vector ofuint8_t
.NimBLEAdvertisedDevice
new method:getPayloadByType
, to get data from generic data types advertised.NimBLEService
new method:isStarted
, checks if the service has been started.NimBLEAdvertising
new method:removeServices
removes all service UUID's from the advertisement.NimBLEAdvertisementData
new method:clearData
sets all data to NULL to reuse the instance.
NimBLEAdvertisedDevice::getManufacturerData
, now takes an index value parameter to use when there is more than 1 instance of manufacturer data.NimBLEAdvertising
directed peer address parameter to advertising start.- Update NimBLE core to esp-nimble @0fc6282
- Can now create more than 255 Characteristics/Descriptors in a service.
nimble_port_freertos_get_hs_hwm
function is now available to the application to get the core task stack usage.- changed default pairing keys shared to include ID key which is now needed by iOS
- Removed abort in server start when a service is not found, logs a warning message instead.
NimBLEAdvertising::start
on complete callback is now a std::function to allow the use of std::bind to class methodsNimBLEAdvertising
setXXX methods will now properly clear the previous data before setting the new values.- Removed asserts in
NimBLECharacteristic
event handler when conn_handle is invalid, sends a NULL conn info to the callback instead.
- Compile warning removed for esp32c3
- NimBLEDevice::getPower incorrect value when power level is -3db.
- Failed pairing when already in progress.
- Revert previous change that forced writing with response when subscribing in favor of allowing the application to decide.
- Added NimBLEHIDDevice::batteryLevel.
- Added NimBLEDevice::setDeviceName allowing for changing the device name while the BLE stack is active.
- CI build tests.
- Missing items in CHANGELOG that were not recorded correctly
- Fixed missing data from long notification values.
- Fixed NimbleCharacteristicCallbacks::onRead not being called when a non-long read command is received.
- Updated NimBLE core to use the v1.4.0 branch of esp-nimble.
- AD flags are no longer set in the advertisements of non-connectable beacons, freeing up 3 bytes of advertisement room.
- Config option CONFIG_BT_NIMBLE_DEBUG replaced with CONFIG_BT_NIMBLE_LOG_LEVEL (see src/nimconfig.h for usage)
- Config option CONFIG_NIMBLE_CPP_ENABLE_ADVERTISMENT_TYPE_TEXT renamed to CONFIG_NIMBLE_CPP_ENABLE_ADVERTISEMENT_TYPE_TEXT
- Config option CONFIG_BT_NIMBLE_TASK_STACK_SIZE renamed to CONFIG_BT_NIMBLE_HOST_TASK_STACK_SIZE
- Preliminary support for non-esp devices, NRF51 and NRF52 devices supported with n-able arduino core
- Alias added for
NimBLEServerCallbacks::onMTUChange
toonMtuChanged
in order to support porting code from original library. NimBLEAttValue
Class added to reduce and control RAM footprint of characteristic/descriptor values and support conversions from Arduino Strings and many other data types.- Bluetooth 5 extended advertising support for capable devices. CODED Phy, 2M Phy, extended advertising data, and multi-advertising are supported, periodic advertising will be implemented in the future.
- Fix compile error with ESP32S3.
- Prevent a potential crash when retrieving characteristics from a service if the result was successful but no characteristics found.
- Save resources when retrieving descriptors if the characteristic handle is the same as the end handle (no descriptors).
- Subscribing to characteristic notifications/indications will now always use write with response, as per BLE specifications.
NimBLEClient::discoverAttributes
now returns a bool value to indicate success/failure
- Crash when retrieving an attribute that does not exist on the peer.
- Memory leak when deleting client instances.
- Compilation errors for esp32s3
- When retrieving attributes from a server fails with a 128bit UUID containing the ble base UUID another attempt will be made with the 16bit version of the UUID.
- Memory leak when services are changed on server devices.
- Rare crashing that occurs when BLE commands are sent from ISR context using IPC.
- Crashing caused by uninitialized disconnect timer in client.
- Potential crash due to uninitialized advertising callback pointer.
- CONFIG_NIMBLE_CPP_DEBUG_LEVEL macro in nimconfig.h to allow setting the log level separately from the Arduino core log level.
- Memory leak when initializing/deinitializing the BLE stack caused by new FreeRTOS timers be created on each initialization.
- Workaround for latest Arduino-esp32 core that causes tasks not to block when required, which caused functions to return prematurely resulting in exceptions/crashing.
- The wrong length value was being used to set the values read from peer attributes. This has been corrected to use the proper value size.
- Workaround added for FreeRTOS bug that affected timers, causing scan and advertising timer expirations to not correctly trigger callbacks.
- Added missing macros for scan filter.
NimBLEClient::getLastError
: Gets the error code of the last function call that produces a return code from the stack.
- Corrected a compiler/linker error when an application or a library uses bluetooth classic due to the redefinition of
btInUse
.
-
NimBLECharacteristic::removeDescriptor
: Dynamically remove a descriptor from a characteristic. Takes effect after all connections are closed and sends a service changed indication. -
NimBLEService::removeCharacteristic
: Dynamically remove a characteristic from a service. Takes effect after all connections are closed and sends a service changed indication -
NimBLEServerCallbacks::onMTUChange
: This is callback is called when the MTU is updated after connection with a client. -
ESP32C3 support
-
Whitelist API:
NimBLEDevice::whiteListAdd
: Add a device to the whitelist.NimBLEDevice::whiteListRemove
: Remove a device from the whitelist.NimBLEDevice::onWhiteList
: Check if the device is on the whitelist.NimBLEDevice::getWhiteListCount
: Gets the size of the whitelistNimBLEDevice::getWhiteListAddress
: Get the address of a device on the whitelist by index value.
-
Bond management API:
NimBLEDevice::getNumBonds
: Gets the number of bonds stored.NimBLEDevice::isBonded
: Checks if the device is bonded.NimBLEDevice::deleteAllBonds
: Deletes all bonds.NimBLEDevice::getBondedAddress
: Gets the address of a bonded device by the index value.
-
NimBLECharacteristic::getCallbacks
to retrieve the current callback handler. -
Connection Information class:
NimBLEConnInfo
. -
NimBLEScan::clearDuplicateCache
: This can be used to reset the cache of advertised devices so they will be immediately discovered again.
- FreeRTOS files have been removed as they are not used by the library.
- Services, characteristics and descriptors can now be created statically and added after.
- Excess logging and some asserts removed.
- Use ESP_LOGx macros to enable using local log level filtering.
NimBLECharacteristicCallbacks::onSubscribe
Is now called after the connection is added to the vector.- Corrected bonding failure when reinitializing the BLE stack.
- Writing to a characteristic with a std::string value now correctly writes values with null characters.
- Retrieving remote descriptors now uses the characteristic end handle correctly.
- Missing data in long writes to remote descriptors.
- Hanging on task notification when sending an indication from the characteristic callback.
- BLE controller memory could be released when using Arduino as a component.
- Compile errors with NimBLE release 1.3.0.
-
NimBLECharacteristic::getDescriptorByHandle
: Return the BLE Descriptor for the given handle. -
NimBLEDescriptor::getStringValue
: Get the value of this descriptor as a string. -
NimBLEServer::getServiceByHandle
: Get a service by its handle. -
NimBLEService::getCharacteristicByHandle
: Get a pointer to the characteristic object with the specified handle. -
NimBLEService::getCharacteristics
: Get the vector containing pointers to each characteristic associated with this service. Overloads to get a vector containing pointers to all the characteristics in a service with the UUID. (supports multiple same UUID's in a service)NimBLEService::getCharacteristics(const char *uuid)
NimBLEService::getCharacteristics(const NimBLEUUID &uuid)
-
NimBLEAdvertisementData
New methods:NimBLEAdvertisementData::addTxPower
: Adds transmission power to the advertisement.NimBLEAdvertisementData::setPreferredParams
: Adds connection parameters to the advertisement.NimBLEAdvertisementData::setURI
: Adds URI data to the advertisement.
-
NimBLEAdvertising
New methods:NimBLEAdvertising::setName
: Set the name advertised.NimBLEAdvertising::setManufacturerData
: Adds manufacturer data to the advertisement.NimBLEAdvertising::setURI
: Adds URI data to the advertisement.NimBLEAdvertising::setServiceData
: Adds service data to the advertisement.NimBLEAdvertising::addTxPower
: Adds transmission power to the advertisement.NimBLEAdvertising::reset
: Stops the current advertising and resets the advertising data to the default values.
-
NimBLEDevice::setScanFilterMode
: Set the controller duplicate filter mode for filtering scanned devices. -
NimBLEDevice::setScanDuplicateCacheSize
: Sets the number of advertisements filtered before the cache is reset. -
NimBLEScan::setMaxResults
: This allows for setting a maximum number of advertised devices stored in the results vector. -
NimBLEAdvertisedDevice
New data retrieval methods added:-
haveAdvInterval/getAdvInterval
: checks if the interval is advertised / gets the advertisement interval value. -
haveConnParams/getMinInterval/getMaxInterval
: checks if the parameters are advertised / get min value / get max value. -
haveURI/getURI
: checks if a URI is advertised / gets the URI data. -
haveTargetAddress/getTargetAddressCount/getTargetAddress(index)
: checks if a target address is present / gets a count of the addresses targeted / gets the address of the target at index.
-
-
nimconfig.h
(Arduino) is now easier to use. -
NimBLEServer::getServiceByUUID
Now takes an extra parameter of instanceID to support multiple services with the same UUID. -
NimBLEService::getCharacteristic
Now takes an extra parameter of instanceID to support multiple characteristics with the same UUID. -
NimBLEAdvertising
Transmission power is no longer advertised by default and can be added to the advertisement by callingNimBLEAdvertising::addTxPower
-
NimBLEAdvertising
Custom scan response data can now be used without custom advertisement. -
NimBLEScan
Now uses the controller duplicate filter. -
NimBLEAdvertisedDevice
Has been refactored to store the complete advertisement payload and no longer parses the data from each advertisement. Instead the data will be parsed on-demand when the user application asks for specific data.
NimBLEHIDDevice
Characteristics now use encryption, this resolves an issue with communicating with devices requiring encryption for HID devices.
-
NimBLEDevice::setOwnAddrType
added to enable the use of random and random-resolvable addresses, by asukiaaa -
New examples for securing and authenticating client/server connections, by mblasee.
-
NimBLEAdvertising::SetMinPreferred
andNimBLEAdvertising::SetMinPreferred
re-added. -
Conditional checks added for command line config options in
nimconfig.h
to support custom configuration in platformio. -
NimBLEClient::setValue
Now takes an extra bool parameterresponse
to enable the use of write with response (default = false). -
NimBLEClient::getCharacteristic(uint16_t handle)
Enabling the use of the characteristic handle to be used to find the NimBLERemoteCharacteristic object. -
NimBLEHIDDevice
class added by wakwak-koba. -
NimBLEServerCallbacks::onDisconnect
overloaded callback added to provide a ble_gap_conn_desc parameter for the application to obtain information about the disconnected client. -
Conditional checks in
nimconfig.h
for command line defined macros to support platformio config settings.
-
NimBLEAdvertising::start
now returns a bool value to indicate success/failure. -
Some asserts were removed in
NimBLEAdvertising::start
and replaced with better return code handling and logging. -
If a host reset event occurs, scanning and advertising will now only be restarted if their previous duration was indefinite.
-
NimBLERemoteCharacteristic::subscribe
andNimBLERemoteCharacteristic::registerForNotify
will now set the callback regardless of the existence of the CCCD and return true unless the descriptor write operation failed. -
Advertising tx power level is now sent in the advertisement packet instead of scan response.
-
NimBLEScan
When the scan ends the scan stopped flag is now set before calling the scan complete callback (if used) this allows the starting of a new scan from the callback function.
-
Sometimes
NimBLEClient::connect
would hang on the task block if no event arrived to unblock. A time limit has been added to timeout appropriately. -
When getting descriptors for a characteristic the end handle of the service was used as a proxy for the characteristic end handle. This would be rejected by some devices and has been changed to use the next characteristic handle as the end when possible.
-
An exception could occur when deleting a client instance if a notification arrived while the attribute vectors were being deleted. A flag has been added to prevent this.
-
An exception could occur after a host reset event when the host re-synced if the tasks that were stopped during the event did not finish processing. A yield has been added after re-syncing to allow tasks to finish before proceeding.
-
Occasionally the controller would fail to send a disconnected event causing the client to indicate it is connected and would be unable to reconnect. A timer has been added to reset the host/controller if it expires.
-
Occasionally the call to start scanning would get stuck in a loop on BLE_HS_EBUSY, this loop has been removed.
-
16bit and 32bit UUID's in some cases were not discovered or compared correctly if the device advertised them as 16/32bit but resolved them to 128bits. Both are now checked.
-
FreeRTOS
compile errors resolved in latest Arduino core and IDF v3.3. -
Multiple instances of
time()
called inside critical sections caused sporadic crashes, these have been moved out of critical regions. -
Advertisement type now correctly set when using non-connectable (advertiser only) mode.
-
Advertising payload length correction, now accounts for appearance.
-
(Arduino) Ensure controller mode is set to BLE Only.
-
NimBLEAdvertising::start
Now takes 2 optional parameters, the first is the duration to advertise for (in seconds), the second is a callback that is invoked when advertising ends and takes a pointer to aNimBLEAdvertising
object (similar to theNimBLEScan::start
API). -
(Arduino) Maximum BLE connections can now be altered by only changing the value of
CONFIG_BT_NIMBLE_MAX_CONNECTIONS
innimconfig.h
. Any changes to the controller max connection settings insdkconfig.h
will now have no effect when using this library. -
(Arduino) Revert the previous change to fix the advertising start delay. Instead a replacement fix that routes all BLE controller commands from a task running on core 0 (same as the controller) has been implemented. This improves response times and reliability for all BLE functions.
- Empty
NimBLEAddress
constructor:NimBLEAddress()
produces an address of 00:00:00:00:00:00 type 0. - Documentation of the difference of NimBLEAddress::getNative vs the original bluedroid library.
- notify_callback typedef is now defined as std::function to enable the use of std::bind to call a class member function.
- Fix advertising start delay when first called.
First stable release.
All the original library functionality is complete and many extras added with full documentation.