esp-nimble-cpp 2.0.2
Loading...
Searching...
No Matches
NimBLEUtils.h
1/*
2 * Copyright 2020-2024 Ryan Powell <ryan@nable-embedded.io> and
3 * esp-nimble-cpp, NimBLE-Arduino contributors.
4 *
5 * Licensed under the Apache License, Version 2.0 (the "License");
6 * you may not use this file except in compliance with the License.
7 * You may obtain a copy of the License at
8 *
9 * http://www.apache.org/licenses/LICENSE-2.0
10 *
11 * Unless required by applicable law or agreed to in writing, software
12 * distributed under the License is distributed on an "AS IS" BASIS,
13 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14 * See the License for the specific language governing permissions and
15 * limitations under the License.
16 */
17
18#ifndef NIMBLE_CPP_UTILS_H_
19#define NIMBLE_CPP_UTILS_H_
20
21#include "nimconfig.h"
22#if defined(CONFIG_BT_ENABLED)
23# include <string>
24
25class NimBLEAddress;
26
33 NimBLETaskData(void* pInstance = nullptr, int flags = 0, void* buf = nullptr);
35 void* m_pInstance{nullptr};
36 mutable int m_flags{0};
37 void* m_pBuf{nullptr};
38
39 private:
40 mutable void* m_pHandle{nullptr}; // semaphore or task handle
41 friend class NimBLEUtils;
42};
43
48 public:
49 static const char* gapEventToString(uint8_t eventType);
50 static std::string dataToHexString(const uint8_t* source, uint8_t length);
51 static const char* advTypeToString(uint8_t advType);
52 static const char* returnCodeToString(int rc);
53 static NimBLEAddress generateAddr(bool nrpa);
54 static bool taskWait(const NimBLETaskData& taskData, uint32_t timeout);
55 static void taskRelease(const NimBLETaskData& taskData, int rc = 0);
56};
57
58#endif // CONFIG_BT_ENABLED
59#endif // NIMBLE_CPP_UTILS_H_
A BLE device address.
Definition NimBLEAddress.h:41
A BLE Utility class with methods for debugging and general purpose use.
Definition NimBLEUtils.h:47
static std::string dataToHexString(const uint8_t *source, uint8_t length)
Create a hexadecimal string representation of the input data.
Definition NimBLEUtils.cpp:546
static bool taskWait(const NimBLETaskData &taskData, uint32_t timeout)
Blocks the calling task until released or timeout.
Definition NimBLEUtils.cpp:90
static NimBLEAddress generateAddr(bool nrpa)
Generate a random BLE address.
Definition NimBLEUtils.cpp:565
static const char * advTypeToString(uint8_t advType)
Convert the advertising type flag to a string.
Definition NimBLEUtils.cpp:428
static void taskRelease(const NimBLETaskData &taskData, int rc=0)
Release a task.
Definition NimBLEUtils.cpp:117
static const char * returnCodeToString(int rc)
Converts a return code from the NimBLE stack to a text string.
Definition NimBLEUtils.cpp:133
static const char * gapEventToString(uint8_t eventType)
Convert a GAP event type to a string representation.
Definition NimBLEUtils.cpp:455
A structure to hold data for a task that is waiting for a response.
Definition NimBLEUtils.h:32
~NimBLETaskData()
Destructor.
Definition NimBLEUtils.cpp:75