mirror of
https://github.com/h2zero/esp-nimble-cpp.git
synced 2025-01-10 03:24:35 +01:00
10d589162b
* msbFirst parameter has been removed from constructor as it was unnecessary, caller should reverse the data first or call the new `reverseByteOrder` method after. * `getNative` method replaced with `getBase` which returns a read-only pointer to the UUID size underlying. * Added `reverseByteOrder` method, this will reverse the bytes of the UUID, which can be useful for advertising/logging. * Added `getValue` method, which returns a read-only `uint8_t` pointer to the UUID value. * Removed `m_valueSet` member variable, `bitSize()` can be used as a replacement. * General code cleanup.
70 lines
1.6 KiB
C++
70 lines
1.6 KiB
C++
/*
|
|
* NimBLEUUID.h
|
|
*
|
|
* Created: on Jan 24 2020
|
|
* Author H2zero
|
|
*
|
|
* Originally:
|
|
*
|
|
* BLEUUID.h
|
|
*
|
|
* Created on: Jun 21, 2017
|
|
* Author: kolban
|
|
*/
|
|
|
|
#ifndef NIMBLE_CPP_UUID_H_
|
|
#define NIMBLE_CPP_UUID_H_
|
|
|
|
#include "nimconfig.h"
|
|
#if defined(CONFIG_BT_ENABLED)
|
|
|
|
# if defined(CONFIG_NIMBLE_CPP_IDF)
|
|
# include "host/ble_uuid.h"
|
|
# else
|
|
# include "nimble/nimble/host/include/host/ble_uuid.h"
|
|
# endif
|
|
|
|
/**** FIX COMPILATION ****/
|
|
# undef min
|
|
# undef max
|
|
/**************************/
|
|
|
|
# include <string>
|
|
# include <cstring>
|
|
|
|
/**
|
|
* @brief A model of a %BLE UUID.
|
|
*/
|
|
class NimBLEUUID {
|
|
public:
|
|
/**
|
|
* @brief Created a blank UUID.
|
|
*/
|
|
NimBLEUUID() = default;
|
|
NimBLEUUID(const std::string& uuid);
|
|
NimBLEUUID(uint16_t uuid);
|
|
NimBLEUUID(uint32_t uuid);
|
|
NimBLEUUID(const ble_uuid128_t* uuid);
|
|
NimBLEUUID(const uint8_t* pData, size_t size);
|
|
NimBLEUUID(uint32_t first, uint16_t second, uint16_t third, uint64_t fourth);
|
|
|
|
uint8_t bitSize() const;
|
|
const uint8_t* getValue() const;
|
|
const ble_uuid_t* getBase() const;
|
|
bool equals(const NimBLEUUID& uuid) const;
|
|
std::string toString() const;
|
|
static NimBLEUUID fromString(const std::string& uuid);
|
|
const NimBLEUUID& to128();
|
|
const NimBLEUUID& to16();
|
|
const NimBLEUUID& reverseByteOrder();
|
|
|
|
bool operator==(const NimBLEUUID& rhs) const;
|
|
bool operator!=(const NimBLEUUID& rhs) const;
|
|
operator std::string() const;
|
|
|
|
private:
|
|
ble_uuid_any_t m_uuid{};
|
|
}; // NimBLEUUID
|
|
|
|
#endif /* CONFIG_BT_ENABLED */
|
|
#endif /* NIMBLE_CPP_UUID_H_ */
|