2020-03-30 01:44:20 +02:00
|
|
|
/*
|
|
|
|
* NimBLEUUID.h
|
|
|
|
*
|
|
|
|
* Created: on Jan 24 2020
|
|
|
|
* Author H2zero
|
2020-07-09 03:27:26 +02:00
|
|
|
*
|
2020-03-30 01:44:20 +02:00
|
|
|
* Originally:
|
|
|
|
*
|
|
|
|
* BLEUUID.h
|
|
|
|
*
|
|
|
|
* Created on: Jun 21, 2017
|
|
|
|
* Author: kolban
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef COMPONENTS_NIMBLEUUID_H_
|
|
|
|
#define COMPONENTS_NIMBLEUUID_H_
|
2021-09-07 05:14:43 +02:00
|
|
|
|
|
|
|
#include "nimconfig.h"
|
2020-03-30 01:44:20 +02:00
|
|
|
#if defined(CONFIG_BT_ENABLED)
|
|
|
|
|
2021-09-07 05:14:43 +02:00
|
|
|
#if defined(CONFIG_NIMBLE_CPP_IDF)
|
2020-03-30 01:44:20 +02:00
|
|
|
#include "host/ble_uuid.h"
|
2021-09-07 05:14:43 +02:00
|
|
|
#else
|
|
|
|
#include "nimble/nimble/host/include/host/ble_uuid.h"
|
|
|
|
#endif
|
|
|
|
|
2020-04-01 04:16:27 +02:00
|
|
|
/**** FIX COMPILATION ****/
|
|
|
|
#undef min
|
|
|
|
#undef max
|
|
|
|
/**************************/
|
2020-03-30 01:44:20 +02:00
|
|
|
|
|
|
|
#include <string>
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @brief A model of a %BLE UUID.
|
|
|
|
*/
|
|
|
|
class NimBLEUUID {
|
|
|
|
public:
|
2020-05-10 15:21:46 +02:00
|
|
|
NimBLEUUID(const std::string &uuid);
|
2020-03-30 01:44:20 +02:00
|
|
|
NimBLEUUID(uint16_t uuid);
|
|
|
|
NimBLEUUID(uint32_t uuid);
|
2020-05-10 15:21:46 +02:00
|
|
|
NimBLEUUID(const ble_uuid128_t* uuid);
|
|
|
|
NimBLEUUID(const uint8_t* pData, size_t size, bool msbFirst);
|
2020-05-03 21:50:49 +02:00
|
|
|
NimBLEUUID(uint32_t first, uint16_t second, uint16_t third, uint64_t fourth);
|
2020-03-30 01:44:20 +02:00
|
|
|
NimBLEUUID();
|
2020-07-09 03:27:26 +02:00
|
|
|
|
|
|
|
uint8_t bitSize() const;
|
|
|
|
bool equals(const NimBLEUUID &uuid) const;
|
2020-05-10 15:21:46 +02:00
|
|
|
const ble_uuid_any_t* getNative() const;
|
2020-07-09 03:27:26 +02:00
|
|
|
const NimBLEUUID & to128();
|
|
|
|
std::string toString() const;
|
|
|
|
static NimBLEUUID fromString(const std::string &uuid);
|
2020-03-30 01:44:20 +02:00
|
|
|
|
2020-05-10 15:21:46 +02:00
|
|
|
bool operator ==(const NimBLEUUID & rhs) const;
|
|
|
|
bool operator !=(const NimBLEUUID & rhs) const;
|
2020-05-07 05:08:50 +02:00
|
|
|
operator std::string() const;
|
|
|
|
|
2020-03-30 01:44:20 +02:00
|
|
|
private:
|
2020-07-09 03:27:26 +02:00
|
|
|
ble_uuid_any_t m_uuid;
|
|
|
|
bool m_valueSet = false;
|
2020-03-30 01:44:20 +02:00
|
|
|
}; // NimBLEUUID
|
|
|
|
#endif /* CONFIG_BT_ENABLED */
|
|
|
|
#endif /* COMPONENTS_NIMBLEUUID_H_ */
|