Select one of the symbols to view example projects that use it.
 
Outline
#define GAP_SVC_H
#include "host/ble_gap.h"
#include "services/gap/ble_svc_gap.h"
#define BLE_GAP_APPEARANCE_GENERIC_TAG
#define BLE_GAP_URI_PREFIX_HTTPS
#define BLE_GAP_LE_ROLE_PERIPHERAL
adv_init();
is_connection_encrypted(uint16_t);
gap_init();
Files
loading...
SourceVuESP-IDF Framework and ExamplesNimBLE_Security samplemain/include/gap.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
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
/* * SPDX-FileCopyrightText: 2024 Espressif Systems (Shanghai) CO LTD * * SPDX-License-Identifier: Unlicense OR CC0-1.0 *//* ... */ #ifndef GAP_SVC_H #define GAP_SVC_H /* Includes */ /* NimBLE GAP APIs */ #include "host/ble_gap.h" #include "services/gap/ble_svc_gap.h" /* Defines */ #define BLE_GAP_APPEARANCE_GENERIC_TAG 0x0200 #define BLE_GAP_URI_PREFIX_HTTPS 0x17 #define BLE_GAP_LE_ROLE_PERIPHERAL 0x00 /* Public function declarations */ void adv_init(void); bool is_connection_encrypted(uint16_t conn_handle); int gap_init(void); /* ... */ #endif // GAP_SVC_H
Details
Show:
from
Types: Columns: