Select one of the symbols to view example projects that use it.
 
Outline
#define _SERVER_COMMON_H_
#include <string.h>
#include <stdint.h>
#include "mesh/access.h"
#define BLE_MESH_SERVER_RSP_MAX_LEN
#define BLE_MESH_SERVER_TRANS_MIC_SIZE
#define BLE_MESH_STATE_OFF
#define BLE_MESH_STATE_ON
#define BLE_MESH_STATE_RESTORE
#define BLE_MESH_LIGHTNESS_MIN
#define BLE_MESH_LIGHTNESS_MAX
#define BLE_MESH_TEMPERATURE_MIN
#define BLE_MESH_TEMPERATURE_MAX
#define BLE_MESH_TEMPERATURE_UNKNOWN
#define BLE_MESH_RANGE_UPDATE_SUCCESS
#define BLE_MESH_CANNOT_SET_RANGE_MIN
#define BLE_MESH_CANNOT_SET_RANGE_MAX
#define BLE_MESH_UNKNOWN_REMAIN_TIME
#define BLE_MESH_DEVICE_SPECIFIC_RESOLUTION
<anonymous enum>
bt_mesh_state_transition
bt_mesh_last_msg_info
#define BLE_MESH_SERVER_RSP_BY_APP
#define BLE_MESH_SERVER_AUTO_RSP
bt_mesh_server_rsp_ctrl
bt_mesh_get_default_trans_time(struct bt_mesh_model *);
bt_mesh_get_light_lc_trans_time(struct bt_mesh_model *, uint8_t *);
bt_mesh_server_get_optional(struct bt_mesh_model *, struct bt_mesh_msg_ctx *, struct net_buf_simple *, uint8_t *, uint8_t *, bool *);
bt_mesh_server_alloc_ctx(struct k_work *);
bt_mesh_server_free_ctx(struct k_work *);
bt_mesh_is_server_recv_last_msg(struct bt_mesh_last_msg_info *, uint8_t, uint16_t, uint16_t, int64_t *);
bt_mesh_server_update_last_msg(struct bt_mesh_last_msg_info *, uint8_t, uint16_t, uint16_t, int64_t *);
bt_mesh_server_get_pub_msg(struct bt_mesh_model *, uint16_t);
Files
loading (4/5)...
SourceVuESP-IDF Framework and ExamplesESP-IDFcomponents/bt/esp_ble_mesh/models/server/include/mesh/server_common.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
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
/* * SPDX-FileCopyrightText: 2017-2021 Espressif Systems (Shanghai) CO LTD * * SPDX-License-Identifier: Apache-2.0 *//* ... */ #ifndef _SERVER_COMMON_H_ #define _SERVER_COMMON_H_ #include <string.h> #include <stdint.h> #include "mesh/access.h" #ifdef __cplusplus extern "C" { #endif #define BLE_MESH_SERVER_RSP_MAX_LEN 384 #define BLE_MESH_SERVER_TRANS_MIC_SIZE 4 #define BLE_MESH_CHECK_SEND_STATUS(_func) do { \ int __status = (_func); \ if (__status) { \ BT_ERR("%s, Send failed, err %d", __func__, __status); \ }{...} \ }{...} while(0);... #define BLE_MESH_STATE_OFF 0x00 #define BLE_MESH_STATE_ON 0x01 #define BLE_MESH_STATE_RESTORE 0x02 /* Following 4 values are as per Mesh Model specification */ #define BLE_MESH_LIGHTNESS_MIN 0x0001 #define BLE_MESH_LIGHTNESS_MAX 0xFFFF #define BLE_MESH_TEMPERATURE_MIN 0x0320 #define BLE_MESH_TEMPERATURE_MAX 0x4E20 #define BLE_MESH_TEMPERATURE_UNKNOWN 0xFFFF /* Refer 7.2 of Mesh Model Specification */ #define BLE_MESH_RANGE_UPDATE_SUCCESS 0x00 #define BLE_MESH_CANNOT_SET_RANGE_MIN 0x01 #define BLE_MESH_CANNOT_SET_RANGE_MAX 0x02 #define BLE_MESH_UNKNOWN_REMAIN_TIME 0x3F #define BLE_MESH_DEVICE_SPECIFIC_RESOLUTION 1016 defines enum { BLE_MESH_TRANS_TIMER_START, /* Proper transition timer has been started */ BLE_MESH_TRANS_FLAG_MAX, }{ ... }; struct bt_mesh_state_transition { bool just_started; uint8_t trans_time; uint8_t remain_time; uint8_t delay; uint32_t quo_tt; uint32_t counter; uint32_t total_duration; int64_t start_timestamp; BLE_MESH_ATOMIC_DEFINE(flag, BLE_MESH_TRANS_FLAG_MAX); struct k_delayed_work timer; }{ ... }; struct bt_mesh_last_msg_info { uint8_t tid; uint16_t src; uint16_t dst; int64_t timestamp; }{ ... }; #define BLE_MESH_SERVER_RSP_BY_APP 0 #define BLE_MESH_SERVER_AUTO_RSP 1 struct bt_mesh_server_rsp_ctrl { /** * @brief BLE Mesh Server Response Option * 1. If get_auto_rsp is set to BLE_MESH_SERVER_RSP_BY_APP, then the response * of Client Get messages need to be replied by the application; * 2. If get_auto_rsp is set to BLE_MESH_SERVER_AUTO_RSP, then the response * of Client Get messages will be replied by the server models; * 3. If set_auto_rsp is set to BLE_MESH_SERVER_RSP_BY_APP, then the response * of Client Set messages need to be replied by the application; * 4. If set_auto_rsp is set to BLE_MESH_SERVER_AUTO_RSP, then the response * of Client Set messages will be replied by the server models; * 5. If status_auto_rsp is set to BLE_MESH_SERVER_RSP_BY_APP, then the response * of Server Status messages need to be replied by the application; * 6. If status_auto_rsp is set to BLE_MESH_SERVER_AUTO_RSP, then the response * of Server status messages will be replied by the server models; *//* ... */ uint8_t get_auto_rsp : 1, /* Response for Client Get messages */ set_auto_rsp : 1, /* Response for Client Set messages */ status_auto_rsp : 1; /* Response for Server Status messages */ }{ ... }; uint8_t bt_mesh_get_default_trans_time(struct bt_mesh_model *model); int bt_mesh_get_light_lc_trans_time(struct bt_mesh_model *model, uint8_t *trans_time); int bt_mesh_server_get_optional(struct bt_mesh_model *model, struct bt_mesh_msg_ctx *ctx, struct net_buf_simple *buf, uint8_t *trans_time, uint8_t *delay, bool *optional); void bt_mesh_server_alloc_ctx(struct k_work *work); void bt_mesh_server_free_ctx(struct k_work *work); bool bt_mesh_is_server_recv_last_msg(struct bt_mesh_last_msg_info *last, uint8_t tid, uint16_t src, uint16_t dst, int64_t *now); void bt_mesh_server_update_last_msg(struct bt_mesh_last_msg_info *last, uint8_t tid, uint16_t src, uint16_t dst, int64_t *now); struct net_buf_simple *bt_mesh_server_get_pub_msg(struct bt_mesh_model *model, uint16_t msg_len); #ifdef __cplusplus }{...} #endif /* ... */ #endif /* _SERVER_COMMON_H_ */
Details
Show:
from
Types: Columns:
This file uses the notable symbols shown below. Click anywhere in the file to view more details.