Select one of the symbols to view example projects that use it.
 
Outline
#define _ADV_H_
#include "mesh/atomic.h"
#include "mesh/access.h"
#include "mesh/adapter.h"
#define BLE_MESH_ADV_DATA_SIZE
#define BLE_MESH_ADV_USER_DATA_SIZE
#define BLE_MESH_ADV
#define BLE_MESH_ADV_BUSY
bt_mesh_pdu_duration(uint8_t);
bt_mesh_msg
bt_mesh_adv_type
bt_mesh_adv
bt_mesh_adv_create(enum bt_mesh_adv_type, int32_t);
bt_mesh_buf_ref_flag_t
bt_mesh_adv_buf_ref_debug(const char *, struct net_buf *, uint8_t, bt_mesh_buf_ref_flag_t);
bt_mesh_adv_create_from_pool(struct net_buf_pool *, bt_mesh_adv_alloc_t, enum bt_mesh_adv_type, int32_t);
bt_mesh_unref_buf_from_pool(struct net_buf_pool *);
bt_mesh_adv_send(struct net_buf *, uint8_t, const struct bt_mesh_send_cb *, void *);
bt_mesh_relay_adv_create(enum bt_mesh_adv_type, int32_t);
bt_mesh_relay_adv_send(struct net_buf *, uint8_t, uint16_t, uint16_t, const struct bt_mesh_send_cb *, void *);
bt_mesh_get_stored_relay_count();
bt_mesh_adv_update();
bt_mesh_adv_init();
bt_mesh_adv_deinit();
Files
loading...
SourceVuESP-IDF Framework and ExamplesESP-IDFcomponents/bt/esp_ble_mesh/core/adv.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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
/* Bluetooth Mesh */ /* * SPDX-FileCopyrightText: 2017 Intel Corporation * SPDX-FileContributor: 2018-2021 Espressif Systems (Shanghai) CO LTD * * SPDX-License-Identifier: Apache-2.0 *//* ... */ #ifndef _ADV_H_ #define _ADV_H_ #include "mesh/atomic.h" #include "mesh/access.h" #include "mesh/adapter.h" #ifdef __cplusplus extern "C" { #endif /* Maximum advertising data payload for a single data type */ #define BLE_MESH_ADV_DATA_SIZE 29 /* The user data is a pointer (4 bytes) to struct bt_mesh_adv */ #define BLE_MESH_ADV_USER_DATA_SIZE 4 #define BLE_MESH_ADV(buf) (*(struct bt_mesh_adv **)net_buf_user_data(buf)) #define BLE_MESH_ADV_BUSY(buf) (BLE_MESH_ADV(buf)->busy) uint16_t bt_mesh_pdu_duration(uint8_t xmit); typedef struct bt_mesh_msg { bool relay; /* Flag indicates if the packet is a relayed one */ void *arg; /* Pointer to the struct net_buf */ uint16_t src; /* Source address for relay packets */ uint16_t dst; /* Destination address for relay packets */ uint32_t timestamp; /* Timestamp recorded when the relay packet is posted to queue */ }{ ... } bt_mesh_msg_t; enum bt_mesh_adv_type { BLE_MESH_ADV_PROV, BLE_MESH_ADV_DATA, BLE_MESH_ADV_BEACON, BLE_MESH_ADV_URI, BLE_MESH_ADV_BLE, BLE_MESH_ADV_PROXY_SOLIC, }{ ... }; struct bt_mesh_adv { const struct bt_mesh_send_cb *cb; void *cb_data; uint8_t type:3; bt_mesh_atomic_t busy; uint8_t xmit; }{ ... }; typedef struct bt_mesh_adv *(*bt_mesh_adv_alloc_t)(int id); struct net_buf *bt_mesh_adv_create(enum bt_mesh_adv_type type, int32_t timeout); typedef enum { BLE_MESH_BUF_REF_EQUAL, BLE_MESH_BUF_REF_SMALL, BLE_MESH_BUF_REF_MAX, }{ ... } bt_mesh_buf_ref_flag_t; void bt_mesh_adv_buf_ref_debug(const char *func, struct net_buf *buf, uint8_t ref_cmp, bt_mesh_buf_ref_flag_t flag); struct net_buf *bt_mesh_adv_create_from_pool(struct net_buf_pool *pool, bt_mesh_adv_alloc_t get_id, enum bt_mesh_adv_type type, int32_t timeout); void bt_mesh_unref_buf_from_pool(struct net_buf_pool *pool); void bt_mesh_adv_send(struct net_buf *buf, uint8_t xmit, const struct bt_mesh_send_cb *cb, void *cb_data); struct net_buf *bt_mesh_relay_adv_create(enum bt_mesh_adv_type type, int32_t timeout); void bt_mesh_relay_adv_send(struct net_buf *buf, uint8_t xmit, uint16_t src, uint16_t dst, const struct bt_mesh_send_cb *cb, void *cb_data); uint16_t bt_mesh_get_stored_relay_count(void); void bt_mesh_adv_update(void); void bt_mesh_adv_init(void); void bt_mesh_adv_deinit(void); #if CONFIG_BLE_MESH_SUPPORT_BLE_ADV int bt_mesh_start_ble_advertising(const struct bt_mesh_ble_adv_param *param, const struct bt_mesh_ble_adv_data *data, uint8_t *index); int bt_mesh_stop_ble_advertising(uint8_t index);/* ... */ #endif /* CONFIG_BLE_MESH_SUPPORT_BLE_ADV */ #ifdef __cplusplus }{...} #endif /* ... */ #endif /* _ADV_H_ */
Details
Show:
from
Types: Columns:
This file uses the notable symbols shown below. Click anywhere in the file to view more details.