Select one of the symbols to view example projects that use it.
 
Outline
#define GATT_SVR_H
#include "host/ble_gatt.h"
#include "services/gatt/ble_svc_gatt.h"
#include "host/ble_gap.h"
send_heart_rate_indication();
gatt_svr_register_cb(struct ble_gatt_register_ctxt *, void *);
gatt_svr_subscribe_cb(struct ble_gap_event *);
gatt_svc_init();
Files
loading...
SourceVuESP-IDF Framework and ExamplesNimBLE_Security samplemain/include/gatt_svc.h
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
/* * SPDX-FileCopyrightText: 2024 Espressif Systems (Shanghai) CO LTD * * SPDX-License-Identifier: Unlicense OR CC0-1.0 *//* ... */ #ifndef GATT_SVR_H #define GATT_SVR_H /* Includes */ /* NimBLE GATT APIs */ #include "host/ble_gatt.h" #include "services/gatt/ble_svc_gatt.h" /* NimBLE GAP APIs */ #include "host/ble_gap.h" /* Public function declarations */ void send_heart_rate_indication(void); void gatt_svr_register_cb(struct ble_gatt_register_ctxt *ctxt, void *arg); int gatt_svr_subscribe_cb(struct ble_gap_event *event); int gatt_svc_init(void); /* ... */ #endif // GATT_SVR_H
Details
Show:
from
Types: Columns: