Select one of the symbols to view example projects that use it.
 
Outline
#define H_BLEPRPH_
#include <stdbool.h>
#include "nimble/ble.h"
#include "modlog/modlog.h"
#include "esp_peripheral.h"
ble_hs_cfg
ble_gatt_register_ctxt
#define GATT_SVR_SVC_ALERT_UUID
#define GATT_SVR_CHR_SUP_NEW_ALERT_CAT_UUID
#define GATT_SVR_CHR_NEW_ALERT
#define GATT_SVR_CHR_SUP_UNR_ALERT_CAT_UUID
#define GATT_SVR_CHR_UNR_ALERT_STAT_UUID
#define GATT_SVR_CHR_ALERT_NOT_CTRL_PT
gatt_svr_register_cb(struct ble_gatt_register_ctxt *, void *);
gatt_svr_init();
Files
loading...
SourceVuESP-IDF Framework and Examplesbleprph_host_only samplemain/bleprph.h
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
/* * SPDX-FileCopyrightText: 2015-2024 Espressif Systems (Shanghai) CO LTD * * SPDX-License-Identifier: Apache-2.0 *//* ... */ #ifndef H_BLEPRPH_ #define H_BLEPRPH_ #include <stdbool.h> #include "nimble/ble.h" #include "modlog/modlog.h" #include "esp_peripheral.h" #ifdef __cplusplus extern "C" { #endif struct ble_hs_cfg; struct ble_gatt_register_ctxt; /** GATT server. */ #define GATT_SVR_SVC_ALERT_UUID 0x1811 #define GATT_SVR_CHR_SUP_NEW_ALERT_CAT_UUID 0x2A47 #define GATT_SVR_CHR_NEW_ALERT 0x2A46 #define GATT_SVR_CHR_SUP_UNR_ALERT_CAT_UUID 0x2A48 #define GATT_SVR_CHR_UNR_ALERT_STAT_UUID 0x2A45 #define GATT_SVR_CHR_ALERT_NOT_CTRL_PT 0x2A446 defines void gatt_svr_register_cb(struct ble_gatt_register_ctxt *ctxt, void *arg); int gatt_svr_init(void); #ifdef __cplusplus }{...} #endif /* ... */ #endif
Details