Select one of the symbols to view example projects that use it.
 
Outline
#define H_BLE_HTP_PRPH_
#include "nimble/ble.h"
#include "modlog/modlog.h"
#include "services/htp/ble_svc_htp.h"
#define GATT_DIS_DEVICE_INFO_UUID
#define GATT_DIS_CHR_UUID16_SYS_ID
#define GATT_DIS_CHR_UUID16_MODEL_NO
#define GATT_DIS_CHR_UUID16_MFC_NAME
ble_hs_cfg
ble_gatt_register_ctxt
gatt_svr_register_cb(struct ble_gatt_register_ctxt *, void *);
gatt_svr_init();
Files
loading...
SourceVuESP-IDF Framework and Exampleshtp_prph samplemain/ble_htp_prph.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
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
/* * SPDX-FileCopyrightText: 2017-2023 Espressif Systems (Shanghai) CO LTD * * SPDX-License-Identifier: Apache-2.0 *//* ... */ #ifndef H_BLE_HTP_PRPH_ #define H_BLE_HTP_PRPH_ #include "nimble/ble.h" #include "modlog/modlog.h" #include "services/htp/ble_svc_htp.h" #ifdef __cplusplus extern "C" { #endif /* 16 Bit Device Information Service Characteristic UUIDs */ #define GATT_DIS_DEVICE_INFO_UUID 0x180A #define GATT_DIS_CHR_UUID16_SYS_ID 0x2A23 #define GATT_DIS_CHR_UUID16_MODEL_NO 0x2A24 #define GATT_DIS_CHR_UUID16_MFC_NAME 0x2A29 struct ble_hs_cfg; struct ble_gatt_register_ctxt; void gatt_svr_register_cb(struct ble_gatt_register_ctxt *ctxt, void *arg); int gatt_svr_init(void); #ifdef __cplusplus }{...} #endif /* ... */ #endif
Details
Show:
from
Types: Columns: