mirror of
https://github.com/h2zero/esp-nimble-cpp.git
synced 2024-11-21 20:50:55 +01:00
44977cdcce
This function is not required as the stack will return an error code in the case of invalid params.
50 lines
1.1 KiB
C++
50 lines
1.1 KiB
C++
/*
|
|
* NimBLEUtils.h
|
|
*
|
|
* Created: on Jan 25 2020
|
|
* Author H2zero
|
|
*
|
|
*/
|
|
|
|
#ifndef COMPONENTS_NIMBLEUTILS_H_
|
|
#define COMPONENTS_NIMBLEUTILS_H_
|
|
|
|
#include "nimconfig.h"
|
|
#if defined(CONFIG_BT_ENABLED)
|
|
|
|
#if defined(CONFIG_NIMBLE_CPP_IDF)
|
|
#include "host/ble_gap.h"
|
|
#else
|
|
#include "nimble/nimble/host/include/host/ble_gap.h"
|
|
#endif
|
|
|
|
/**** FIX COMPILATION ****/
|
|
#undef min
|
|
#undef max
|
|
/**************************/
|
|
|
|
#include <string>
|
|
|
|
typedef struct {
|
|
void *pATT;
|
|
TaskHandle_t task;
|
|
int rc;
|
|
void *buf;
|
|
} ble_task_data_t;
|
|
|
|
|
|
/**
|
|
* @brief A BLE Utility class with methods for debugging and general purpose use.
|
|
*/
|
|
class NimBLEUtils {
|
|
public:
|
|
static void dumpGapEvent(ble_gap_event *event, void *arg);
|
|
static const char* gapEventToString(uint8_t eventType);
|
|
static char* buildHexData(uint8_t* target, const uint8_t* source, uint8_t length);
|
|
static const char* advTypeToString(uint8_t advType);
|
|
static const char* returnCodeToString(int rc);
|
|
};
|
|
|
|
|
|
#endif // CONFIG_BT_ENABLED
|
|
#endif // COMPONENTS_NIMBLEUTILS_H_
|