Select one of the symbols to view example projects that use it.
 
Outline
#define H_PHY_PRPH_
#include <stdbool.h>
#include "nimble/ble.h"
#include "modlog/modlog.h"
#include "esp_peripheral.h"
ble_hs_cfg
ble_gatt_register_ctxt
#define LE_PHY_UUID16
#define LE_PHY_CHR_UUID16
gatt_svr_register_cb(struct ble_gatt_register_ctxt *, void *);
gatt_svr_init_le_phy();
Files
loading...
SourceVuESP-IDF Framework and Examplesphy_prph samplemain/phy_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
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
/* * SPDX-FileCopyrightText: 2021-2022 Espressif Systems (Shanghai) CO LTD * * SPDX-License-Identifier: Unlicense OR CC0-1.0 *//* ... */ #ifndef H_PHY_PRPH_ #define H_PHY_PRPH_ #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; /** Making sure client connects to server having LE PHY UUID */ #define LE_PHY_UUID16 0xABF2 #define LE_PHY_CHR_UUID16 0xABF3 void gatt_svr_register_cb(struct ble_gatt_register_ctxt *ctxt, void *arg); int gatt_svr_init_le_phy(void); #ifdef __cplusplus }{...} #endif /* ... */ #endif
Details
Show:
from
Types: Columns: