mirror of
https://github.com/meshtastic/firmware.git
synced 2025-12-22 10:42:49 +00:00
23 lines
632 B
C
23 lines
632 B
C
|
|
#pragma once
|
||
|
|
|
||
|
|
#include "esp_nimble_hci.h"
|
||
|
|
#include "host/ble_hs.h"
|
||
|
|
#include "host/ble_uuid.h"
|
||
|
|
#include "nimble/nimble_port.h"
|
||
|
|
#include "nimble/nimble_port_freertos.h"
|
||
|
|
|
||
|
|
#ifdef __cplusplus
|
||
|
|
extern "C" {
|
||
|
|
#endif
|
||
|
|
|
||
|
|
int toradio_callback(uint16_t conn_handle, uint16_t attr_handle, struct ble_gatt_access_ctxt *ctxt, void *arg);
|
||
|
|
|
||
|
|
int fromradio_callback(uint16_t conn_handle, uint16_t attr_handle, struct ble_gatt_access_ctxt *ctxt, void *arg);
|
||
|
|
|
||
|
|
int fromnum_callback(uint16_t conn_handle, uint16_t attr_handle, struct ble_gatt_access_ctxt *ctxt, void *arg);
|
||
|
|
|
||
|
|
extern const struct ble_gatt_svc_def gatt_svr_svcs[];
|
||
|
|
|
||
|
|
#ifdef __cplusplus
|
||
|
|
};
|
||
|
|
#endif
|