mirror of
https://github.com/h2zero/esp-nimble-cpp.git
synced 2024-12-18 09:10:47 +01:00
Refactor 2904 descriptor
* General code cleanup. * Added method `NimBLECharacteristic::create2904` which will specifically create a CPF(0x2904) descriptor.
This commit is contained in:
parent
47c3cd5b84
commit
b4fe046c56
5 changed files with 59 additions and 60 deletions
|
@ -195,7 +195,7 @@ void app_main(void) {
|
||||||
* and sizes. However we must cast the returned reference to the correct type as the method
|
* and sizes. However we must cast the returned reference to the correct type as the method
|
||||||
* only returns a pointer to the base NimBLEDescriptor class.
|
* only returns a pointer to the base NimBLEDescriptor class.
|
||||||
*/
|
*/
|
||||||
NimBLE2904* pBeef2904 = (NimBLE2904*)pBeefCharacteristic->createDescriptor("2904");
|
NimBLE2904* pBeef2904 = pBeefCharacteristic->create2904();
|
||||||
pBeef2904->setFormat(NimBLE2904::FORMAT_UTF8);
|
pBeef2904->setFormat(NimBLE2904::FORMAT_UTF8);
|
||||||
pBeef2904->setCallbacks(&dscCallbacks);
|
pBeef2904->setCallbacks(&dscCallbacks);
|
||||||
|
|
||||||
|
|
|
@ -17,66 +17,55 @@
|
||||||
|
|
||||||
# include "NimBLE2904.h"
|
# include "NimBLE2904.h"
|
||||||
|
|
||||||
|
NimBLE2904::NimBLE2904(NimBLECharacteristic* pChr)
|
||||||
NimBLE2904::NimBLE2904(NimBLECharacteristic* pCharacteristic)
|
: NimBLEDescriptor(NimBLEUUID((uint16_t)0x2904), BLE_GATT_CHR_F_READ, sizeof(NimBLE2904Data), pChr) {
|
||||||
: NimBLEDescriptor(NimBLEUUID((uint16_t) 0x2904),
|
setValue(m_data);
|
||||||
BLE_GATT_CHR_F_READ,
|
} // NimBLE2904
|
||||||
sizeof(BLE2904_Data),
|
|
||||||
pCharacteristic)
|
|
||||||
{
|
|
||||||
m_data.m_format = 0;
|
|
||||||
m_data.m_exponent = 0;
|
|
||||||
m_data.m_namespace = 1; // 1 = Bluetooth SIG Assigned Numbers
|
|
||||||
m_data.m_unit = 0;
|
|
||||||
m_data.m_description = 0;
|
|
||||||
setValue((uint8_t*) &m_data, sizeof(m_data));
|
|
||||||
} // BLE2904
|
|
||||||
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @brief Set the description.
|
* @brief Set the description.
|
||||||
|
* @param [in] description The description value to set.
|
||||||
*/
|
*/
|
||||||
void NimBLE2904::setDescription(uint16_t description) {
|
void NimBLE2904::setDescription(uint16_t description) {
|
||||||
m_data.m_description = description;
|
m_data.m_description = description;
|
||||||
setValue((uint8_t*) &m_data, sizeof(m_data));
|
setValue(m_data);
|
||||||
}
|
} // setDescription
|
||||||
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @brief Set the exponent.
|
* @brief Set the exponent.
|
||||||
|
* @param [in] exponent The exponent value to set.
|
||||||
*/
|
*/
|
||||||
void NimBLE2904::setExponent(int8_t exponent) {
|
void NimBLE2904::setExponent(int8_t exponent) {
|
||||||
m_data.m_exponent = exponent;
|
m_data.m_exponent = exponent;
|
||||||
setValue((uint8_t*) &m_data, sizeof(m_data));
|
setValue(m_data);
|
||||||
} // setExponent
|
} // setExponent
|
||||||
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @brief Set the format.
|
* @brief Set the format.
|
||||||
|
* @param [in] format The format value to set.
|
||||||
*/
|
*/
|
||||||
void NimBLE2904::setFormat(uint8_t format) {
|
void NimBLE2904::setFormat(uint8_t format) {
|
||||||
m_data.m_format = format;
|
m_data.m_format = format;
|
||||||
setValue((uint8_t*) &m_data, sizeof(m_data));
|
setValue(m_data);
|
||||||
} // setFormat
|
} // setFormat
|
||||||
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @brief Set the namespace.
|
* @brief Set the namespace.
|
||||||
|
* @param [in] namespace_value The namespace value toset.
|
||||||
*/
|
*/
|
||||||
void NimBLE2904::setNamespace(uint8_t namespace_value) {
|
void NimBLE2904::setNamespace(uint8_t namespace_value) {
|
||||||
m_data.m_namespace = namespace_value;
|
m_data.m_namespace = namespace_value;
|
||||||
setValue((uint8_t*) &m_data, sizeof(m_data));
|
setValue(m_data);
|
||||||
} // setNamespace
|
} // setNamespace
|
||||||
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @brief Set the units for this value. It should be one of the encoded values defined here:
|
* @brief Set the units for this value.
|
||||||
* https://www.bluetooth.com/specifications/assigned-numbers/units
|
|
||||||
* @param [in] unit The type of units of this characteristic as defined by assigned numbers.
|
* @param [in] unit The type of units of this characteristic as defined by assigned numbers.
|
||||||
|
* @details See https://www.bluetooth.com/specifications/assigned-numbers/units
|
||||||
*/
|
*/
|
||||||
void NimBLE2904::setUnit(uint16_t unit) {
|
void NimBLE2904::setUnit(uint16_t unit) {
|
||||||
m_data.m_unit = unit;
|
m_data.m_unit = unit;
|
||||||
setValue((uint8_t*) &m_data, sizeof(m_data));
|
setValue(m_data);
|
||||||
} // setUnit
|
} // setUnit
|
||||||
|
|
||||||
#endif /* CONFIG_BT_ENABLED && CONFIG_BT_NIMBLE_ROLE_PERIPHERAL */
|
#endif /* CONFIG_BT_ENABLED && CONFIG_BT_NIMBLE_ROLE_PERIPHERAL */
|
||||||
|
|
|
@ -12,23 +12,22 @@
|
||||||
* Author: kolban
|
* Author: kolban
|
||||||
*/
|
*/
|
||||||
|
|
||||||
#ifndef MAIN_NIMBLE2904_H_
|
#ifndef NIMBLE_CPP_2904_H_
|
||||||
#define MAIN_NIMBLE2904_H_
|
#define NIMBLE_CPP_2904_H_
|
||||||
|
|
||||||
#include "nimconfig.h"
|
#include "nimconfig.h"
|
||||||
#if defined(CONFIG_BT_ENABLED) && defined(CONFIG_BT_NIMBLE_ROLE_PERIPHERAL)
|
#if defined(CONFIG_BT_ENABLED) && defined(CONFIG_BT_NIMBLE_ROLE_PERIPHERAL)
|
||||||
|
|
||||||
# include "NimBLEDescriptor.h"
|
# include "NimBLEDescriptor.h"
|
||||||
|
|
||||||
struct BLE2904_Data {
|
struct NimBLE2904Data {
|
||||||
uint8_t m_format;
|
uint8_t m_format{0};
|
||||||
int8_t m_exponent;
|
int8_t m_exponent{0};
|
||||||
uint16_t m_unit; // See https://www.bluetooth.com/specifications/assigned-numbers/units
|
uint16_t m_unit{0x2700}; // Unitless; See https://www.bluetooth.com/specifications/assigned-numbers/units
|
||||||
uint8_t m_namespace;
|
uint8_t m_namespace{1}; // 1 = Bluetooth SIG Assigned Numbers
|
||||||
uint16_t m_description;
|
uint16_t m_description{0}; // unknown description
|
||||||
|
|
||||||
} __attribute__((packed));
|
} __attribute__((packed));
|
||||||
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @brief Descriptor for Characteristic Presentation Format.
|
* @brief Descriptor for Characteristic Presentation Format.
|
||||||
*
|
*
|
||||||
|
@ -36,7 +35,7 @@ struct BLE2904_Data {
|
||||||
*/
|
*/
|
||||||
class NimBLE2904 : public NimBLEDescriptor {
|
class NimBLE2904 : public NimBLEDescriptor {
|
||||||
public:
|
public:
|
||||||
NimBLE2904(NimBLECharacteristic* pCharacterisitic = nullptr);
|
NimBLE2904(NimBLECharacteristic* pChr = nullptr);
|
||||||
static const uint8_t FORMAT_BOOLEAN = 1;
|
static const uint8_t FORMAT_BOOLEAN = 1;
|
||||||
static const uint8_t FORMAT_UINT2 = 2;
|
static const uint8_t FORMAT_UINT2 = 2;
|
||||||
static const uint8_t FORMAT_UINT4 = 3;
|
static const uint8_t FORMAT_UINT4 = 3;
|
||||||
|
@ -64,6 +63,7 @@ public:
|
||||||
static const uint8_t FORMAT_UTF8 = 25;
|
static const uint8_t FORMAT_UTF8 = 25;
|
||||||
static const uint8_t FORMAT_UTF16 = 26;
|
static const uint8_t FORMAT_UTF16 = 26;
|
||||||
static const uint8_t FORMAT_OPAQUE = 27;
|
static const uint8_t FORMAT_OPAQUE = 27;
|
||||||
|
static const uint8_t FORMAT_MEDASN1 = 28;
|
||||||
|
|
||||||
void setDescription(uint16_t);
|
void setDescription(uint16_t);
|
||||||
void setExponent(int8_t exponent);
|
void setExponent(int8_t exponent);
|
||||||
|
@ -73,8 +73,8 @@ public:
|
||||||
|
|
||||||
private:
|
private:
|
||||||
friend class NimBLECharacteristic;
|
friend class NimBLECharacteristic;
|
||||||
BLE2904_Data m_data;
|
NimBLE2904Data m_data{};
|
||||||
}; // BLE2904
|
}; // NimBLE2904
|
||||||
|
|
||||||
#endif /* CONFIG_BT_ENABLED && CONFIG_BT_NIMBLE_ROLE_PERIPHERAL */
|
#endif // CONFIG_BT_ENABLED && CONFIG_BT_NIMBLE_ROLE_PERIPHERAL
|
||||||
#endif /* MAIN_NIMBLE2904_H_ */
|
#endif // NIMBLE_CPP_2904_H_
|
||||||
|
|
|
@ -72,8 +72,9 @@ NimBLEDescriptor* NimBLECharacteristic::createDescriptor(const char* uuid, uint3
|
||||||
*/
|
*/
|
||||||
NimBLEDescriptor* NimBLECharacteristic::createDescriptor(const NimBLEUUID& uuid, uint32_t properties, uint16_t maxLen) {
|
NimBLEDescriptor* NimBLECharacteristic::createDescriptor(const NimBLEUUID& uuid, uint32_t properties, uint16_t maxLen) {
|
||||||
NimBLEDescriptor* pDescriptor = nullptr;
|
NimBLEDescriptor* pDescriptor = nullptr;
|
||||||
if (uuid == NimBLEUUID(uint16_t(0x2904))) {
|
if (uuid == NimBLEUUID(static_cast<uint16_t>(0x2904))) {
|
||||||
pDescriptor = new NimBLE2904(this);
|
NIMBLE_LOGW(LOG_TAG, "0x2904 descriptor should be created with create2904()");
|
||||||
|
pDescriptor = create2904();
|
||||||
} else {
|
} else {
|
||||||
pDescriptor = new NimBLEDescriptor(uuid, properties, maxLen, this);
|
pDescriptor = new NimBLEDescriptor(uuid, properties, maxLen, this);
|
||||||
}
|
}
|
||||||
|
@ -82,6 +83,16 @@ NimBLEDescriptor* NimBLECharacteristic::createDescriptor(const NimBLEUUID& uuid,
|
||||||
return pDescriptor;
|
return pDescriptor;
|
||||||
} // createDescriptor
|
} // createDescriptor
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @brief Create a Characteristic Presentation Format Descriptor for this characteristic.
|
||||||
|
* @return A pointer to a NimBLE2904 descriptor.
|
||||||
|
*/
|
||||||
|
NimBLE2904* NimBLECharacteristic::create2904() {
|
||||||
|
NimBLE2904* pDescriptor = new NimBLE2904(this);
|
||||||
|
addDescriptor(pDescriptor);
|
||||||
|
return pDescriptor;
|
||||||
|
} // create2904
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @brief Add a descriptor to the characteristic.
|
* @brief Add a descriptor to the characteristic.
|
||||||
* @param [in] pDescriptor A pointer to the descriptor to add.
|
* @param [in] pDescriptor A pointer to the descriptor to add.
|
||||||
|
|
|
@ -17,14 +17,12 @@
|
||||||
#if defined(CONFIG_BT_ENABLED) && defined(CONFIG_BT_NIMBLE_ROLE_PERIPHERAL)
|
#if defined(CONFIG_BT_ENABLED) && defined(CONFIG_BT_NIMBLE_ROLE_PERIPHERAL)
|
||||||
|
|
||||||
class NimBLECharacteristicCallbacks;
|
class NimBLECharacteristicCallbacks;
|
||||||
|
class NimBLEService;
|
||||||
class NimBLECharacteristic;
|
class NimBLECharacteristic;
|
||||||
|
class NimBLEDescriptor;
|
||||||
|
class NimBLE2904;
|
||||||
|
|
||||||
# include "NimBLELocalValueAttribute.h"
|
# include "NimBLELocalValueAttribute.h"
|
||||||
# include "NimBLEServer.h"
|
|
||||||
# include "NimBLEService.h"
|
|
||||||
# include "NimBLEDescriptor.h"
|
|
||||||
# include "NimBLEAttValue.h"
|
|
||||||
# include "NimBLEConnInfo.h"
|
|
||||||
|
|
||||||
# include <string>
|
# include <string>
|
||||||
# include <vector>
|
# include <vector>
|
||||||
|
@ -64,6 +62,7 @@ class NimBLECharacteristic : public NimBLELocalValueAttribute {
|
||||||
NimBLEDescriptor* createDescriptor(const NimBLEUUID& uuid,
|
NimBLEDescriptor* createDescriptor(const NimBLEUUID& uuid,
|
||||||
uint32_t properties = NIMBLE_PROPERTY::READ | NIMBLE_PROPERTY::WRITE,
|
uint32_t properties = NIMBLE_PROPERTY::READ | NIMBLE_PROPERTY::WRITE,
|
||||||
uint16_t maxLen = BLE_ATT_ATTR_MAX_LEN);
|
uint16_t maxLen = BLE_ATT_ATTR_MAX_LEN);
|
||||||
|
NimBLE2904* create2904();
|
||||||
NimBLEDescriptor* getDescriptorByUUID(const char* uuid) const;
|
NimBLEDescriptor* getDescriptorByUUID(const char* uuid) const;
|
||||||
NimBLEDescriptor* getDescriptorByUUID(const NimBLEUUID& uuid) const;
|
NimBLEDescriptor* getDescriptorByUUID(const NimBLEUUID& uuid) const;
|
||||||
NimBLEDescriptor* getDescriptorByHandle(uint16_t handle) const;
|
NimBLEDescriptor* getDescriptorByHandle(uint16_t handle) const;
|
||||||
|
|
Loading…
Reference in a new issue