2020-03-30 01:44:20 +02:00
|
|
|
/*
|
|
|
|
* NimBLEUtils.h
|
|
|
|
*
|
|
|
|
* Created: on Jan 25 2020
|
|
|
|
* Author H2zero
|
2020-05-14 06:03:56 +02:00
|
|
|
*
|
2020-03-30 01:44:20 +02:00
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef COMPONENTS_NIMBLEUTILS_H_
|
|
|
|
#define COMPONENTS_NIMBLEUTILS_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_gap.h"
|
2021-09-07 05:14:43 +02:00
|
|
|
#else
|
|
|
|
#include "nimble/nimble/host/include/host/ble_gap.h"
|
|
|
|
#endif
|
2020-03-30 01:44:20 +02:00
|
|
|
|
2020-06-11 16:13:39 +02:00
|
|
|
/**** FIX COMPILATION ****/
|
|
|
|
#undef min
|
|
|
|
#undef max
|
|
|
|
/**************************/
|
|
|
|
|
2020-06-11 16:06:16 +02:00
|
|
|
#include <string>
|
|
|
|
|
|
|
|
typedef struct {
|
|
|
|
void *pATT;
|
|
|
|
TaskHandle_t task;
|
|
|
|
int rc;
|
|
|
|
std::string *buf;
|
|
|
|
} ble_task_data_t;
|
|
|
|
|
2020-07-09 03:27:26 +02:00
|
|
|
|
|
|
|
/**
|
|
|
|
* @brief A BLE Utility class with methods for debugging and general purpose use.
|
|
|
|
*/
|
2020-03-30 01:44:20 +02:00
|
|
|
class NimBLEUtils {
|
|
|
|
public:
|
|
|
|
static void dumpGapEvent(ble_gap_event *event, void *arg);
|
|
|
|
static const char* gapEventToString(uint8_t eventType);
|
2020-05-10 15:21:46 +02:00
|
|
|
static char* buildHexData(uint8_t* target, const uint8_t* source, uint8_t length);
|
2020-03-30 01:44:20 +02:00
|
|
|
static const char* advTypeToString(uint8_t advType);
|
|
|
|
static const char* returnCodeToString(int rc);
|
|
|
|
static int checkConnParams(ble_gap_conn_params* params);
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
#endif // CONFIG_BT_ENABLED
|
2020-05-10 15:21:46 +02:00
|
|
|
#endif // COMPONENTS_NIMBLEUTILS_H_
|