Select one of the symbols to view example projects that use it.
 
Outline
#define _TRANSPORT_H_
#include "net.h"
#define TRANS_SEQ_AUTH_NVAL
#define BLE_MESH_SDU_UNSEG_MAX
#define BLE_MESH_CTL_SEG_SDU_MAX
#define BLE_MESH_APP_SEG_SDU_MAX
#define BLE_MESH_TX_SDU_MAX
#define TRANS_SEQ_ZERO_MASK
#define TRANS_CTL_OP_MASK
#define TRANS_CTL_OP
#define TRANS_CTL_HDR
#define TRANS_CTL_OP_ACK
#define TRANS_CTL_OP_FRIEND_POLL
#define TRANS_CTL_OP_FRIEND_UPDATE
#define TRANS_CTL_OP_FRIEND_REQ
#define TRANS_CTL_OP_FRIEND_OFFER
#define TRANS_CTL_OP_FRIEND_CLEAR
#define TRANS_CTL_OP_FRIEND_CLEAR_CFM
#define TRANS_CTL_OP_FRIEND_SUB_ADD
#define TRANS_CTL_OP_FRIEND_SUB_REM
#define TRANS_CTL_OP_FRIEND_SUB_CFM
#define TRANS_CTL_OP_HEARTBEAT
#define TRANS_CTL_OP_PATH_REQ
#define TRANS_CTL_OP_PATH_REPLY
#define TRANS_CTL_OP_PATH_CFM
#define TRANS_CTL_OP_PATH_ECHO_REQ
#define TRANS_CTL_OP_PATH_ECHO_REPLY
#define TRANS_CTL_OP_DEP_NODE_UPDATE
#define TRANS_CTL_OP_PATH_REQ_SOLIC
bt_mesh_ctl_friend_poll
bt_mesh_ctl_friend_update
bt_mesh_ctl_friend_req
bt_mesh_ctl_friend_offer
bt_mesh_ctl_friend_clear
bt_mesh_ctl_friend_clear_confirm
#define BLE_MESH_FRIEND_SUB_MIN_LEN
bt_mesh_ctl_friend_sub
bt_mesh_ctl_friend_sub_confirm
bt_mesh_get_seg_rtx_num();
bt_mesh_get_seg_rtx_timeout(uint16_t, uint8_t);
bt_mesh_app_key_get(uint16_t);
bt_mesh_upper_key_get(const struct bt_mesh_subnet *, uint16_t, const uint8_t **, uint8_t *, uint16_t);
bt_mesh_tx_in_progress();
bt_mesh_rx_reset();
bt_mesh_tx_reset();
bt_mesh_rx_reset_single(uint16_t);
bt_mesh_tx_reset_single(uint16_t);
bt_mesh_ctl_send(struct bt_mesh_net_tx *, uint8_t, void *, size_t, const struct bt_mesh_send_cb *, void *);
bt_mesh_trans_send(struct bt_mesh_net_tx *, struct net_buf_simple *, const struct bt_mesh_send_cb *, void *);
bt_mesh_trans_recv(struct net_buf_simple *, struct bt_mesh_net_rx *);
bt_mesh_trans_init();
bt_mesh_trans_deinit(bool);
Files
loading...
SourceVuESP-IDF Framework and ExamplesESP-IDFcomponents/bt/esp_ble_mesh/core/transport.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
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
/* Bluetooth Mesh */ /* * SPDX-FileCopyrightText: 2017 Intel Corporation * SPDX-FileContributor: 2018-2021 Espressif Systems (Shanghai) CO LTD * * SPDX-License-Identifier: Apache-2.0 *//* ... */ #ifndef _TRANSPORT_H_ #define _TRANSPORT_H_ #include "net.h" #ifdef __cplusplus extern "C" { #endif #define TRANS_SEQ_AUTH_NVAL 0xffffffffffffffff #define BLE_MESH_SDU_UNSEG_MAX 11 #define BLE_MESH_CTL_SEG_SDU_MAX 8 #define BLE_MESH_APP_SEG_SDU_MAX 12 #define BLE_MESH_TX_SDU_MAX (CONFIG_BLE_MESH_TX_SEG_MAX * 12) #define TRANS_SEQ_ZERO_MASK ((uint16_t)BIT_MASK(13)) #define TRANS_CTL_OP_MASK ((uint8_t)BIT_MASK(7)) #define TRANS_CTL_OP(data) ((data)[0] & TRANS_CTL_OP_MASK) #define TRANS_CTL_HDR(op, seg) (((op) & TRANS_CTL_OP_MASK) | ((seg) << 7)) #define TRANS_CTL_OP_ACK 0x00 #define TRANS_CTL_OP_FRIEND_POLL 0x01 #define TRANS_CTL_OP_FRIEND_UPDATE 0x02 #define TRANS_CTL_OP_FRIEND_REQ 0x03 #define TRANS_CTL_OP_FRIEND_OFFER 0x04 #define TRANS_CTL_OP_FRIEND_CLEAR 0x05 #define TRANS_CTL_OP_FRIEND_CLEAR_CFM 0x06 #define TRANS_CTL_OP_FRIEND_SUB_ADD 0x07 #define TRANS_CTL_OP_FRIEND_SUB_REM 0x08 #define TRANS_CTL_OP_FRIEND_SUB_CFM 0x09 #define TRANS_CTL_OP_HEARTBEAT 0x0A #define TRANS_CTL_OP_PATH_REQ 0x0B #define TRANS_CTL_OP_PATH_REPLY 0x0C #define TRANS_CTL_OP_PATH_CFM 0x0D #define TRANS_CTL_OP_PATH_ECHO_REQ 0x0E #define TRANS_CTL_OP_PATH_ECHO_REPLY 0x0F #define TRANS_CTL_OP_DEP_NODE_UPDATE 0x10 #define TRANS_CTL_OP_PATH_REQ_SOLIC 0x1127 defines struct bt_mesh_ctl_friend_poll { uint8_t fsn; }{ ... } __attribute__((packed)); struct bt_mesh_ctl_friend_update { uint8_t flags; uint32_t iv_index; uint8_t md; }{ ... } __attribute__((packed)); struct bt_mesh_ctl_friend_req { uint8_t criteria; uint8_t recv_delay; uint8_t poll_to[3]; uint16_t prev_addr; uint8_t num_elem; uint16_t lpn_counter; }{ ... } __attribute__((packed)); struct bt_mesh_ctl_friend_offer { uint8_t recv_win; uint8_t queue_size; uint8_t sub_list_size; int8_t rssi; uint16_t frnd_counter; }{ ... } __attribute__((packed)); struct bt_mesh_ctl_friend_clear { uint16_t lpn_addr; uint16_t lpn_counter; }{ ... } __attribute__((packed)); struct bt_mesh_ctl_friend_clear_confirm { uint16_t lpn_addr; uint16_t lpn_counter; }{ ... } __attribute__((packed)); #define BLE_MESH_FRIEND_SUB_MIN_LEN (1 + 2) struct bt_mesh_ctl_friend_sub { uint8_t xact; uint16_t addr_list[5]; }{ ... } __attribute__((packed)); struct bt_mesh_ctl_friend_sub_confirm { uint8_t xact; }{ ... } __attribute__((packed)); uint8_t bt_mesh_get_seg_rtx_num(void); int32_t bt_mesh_get_seg_rtx_timeout(uint16_t dst, uint8_t ttl); struct bt_mesh_app_key *bt_mesh_app_key_get(uint16_t app_idx); int bt_mesh_upper_key_get(const struct bt_mesh_subnet *subnet, uint16_t app_idx, const uint8_t **key, uint8_t *aid, uint16_t dst); bool bt_mesh_tx_in_progress(void); void bt_mesh_rx_reset(void); void bt_mesh_tx_reset(void); void bt_mesh_rx_reset_single(uint16_t src); void bt_mesh_tx_reset_single(uint16_t dst); int bt_mesh_ctl_send(struct bt_mesh_net_tx *tx, uint8_t ctl_op, void *data, size_t data_len, const struct bt_mesh_send_cb *cb, void *cb_data); int bt_mesh_trans_send(struct bt_mesh_net_tx *tx, struct net_buf_simple *msg, const struct bt_mesh_send_cb *cb, void *cb_data); int bt_mesh_trans_recv(struct net_buf_simple *buf, struct bt_mesh_net_rx *rx); void bt_mesh_trans_init(void); void bt_mesh_trans_deinit(bool erase); #ifdef __cplusplus }{...} #endif /* ... */ #endif /* _TRANSPORT_H_ */
Details
Show:
from
Types: Columns:
This file uses the notable symbols shown below. Click anywhere in the file to view more details.