summaryrefslogtreecommitdiff
path: root/src/BLEDescriptor.h
blob: 1d32d500291bbb0faee2ab5253618807e26fbc11 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
/*
 * BLEDescriptor.h
 *
 *  Created on: Jun 22, 2017
 *      Author: kolban
 */
 
#ifndef COMPONENTS_CPP_UTILS_BLEDESCRIPTOR_H_
#define COMPONENTS_CPP_UTILS_BLEDESCRIPTOR_H_
#include "sdkconfig.h"
#if defined(CONFIG_BT_ENABLED)
#include <string>
#include "BLEUUID.h"
#include "BLECharacteristic.h"
#include <esp_gatts_api.h>
#include "FreeRTOS.h"
 
class BLEService;
class BLECharacteristic;
 
/**
 * @brief A model of a %BLE descriptor.
 */
class BLEDescriptor {
public:
BLEDescriptor(const char* uuid);
BLEDescriptor(BLEUUID uuid);
virtual ~BLEDescriptor();
 
size_t   getLength();
BLEUUID  getUUID();
uint8_t* getValue();
void handleGATTServerEvent(
esp_gatts_cb_event_t      event,
esp_gatt_if_t             gatts_if,
esp_ble_gatts_cb_param_t* param);
void setValue(uint8_t* data, size_t size);
void setValue(std::string value);
std::string toString();
 
private:
friend class BLEDescriptorMap;
friend class BLECharacteristic;
BLEUUID              m_bleUUID;
esp_attr_value_t     m_value;
uint16_t             m_handle;
BLECharacteristic*   m_pCharacteristic;
void executeCreate(BLECharacteristic* pCharacteristic);
uint16_t getHandle();
void setHandle(uint16_t handle);
FreeRTOS::Semaphore m_semaphoreCreateEvt = FreeRTOS::Semaphore("CreateEvt");
};
#endif /* CONFIG_BT_ENABLED */
#endif /* COMPONENTS_CPP_UTILS_BLEDESCRIPTOR_H_ */