Select one of the symbols to view example projects that use it.
 
Outline
#define _BLE_MESH_TIMER_H_
#include "mesh/types.h"
#include "mesh/slist.h"
#include "mesh/atomic.h"
#define NSEC_PER_USEC
#define USEC_PER_MSEC
#define MSEC_PER_SEC
#define USEC_PER_SEC
#define NSEC_PER_SEC
#define _INACTIVE
k_work
k_work
#define K_NO_WAIT
#define K_MSEC
#define K_SECONDS
#define K_MINUTES
#define K_HOURS
#define K_DAYS
#define K_FOREVER
k_uptime_get_32();
k_delayed_work
k_delayed_work_submit(struct k_delayed_work *, int32_t);
k_delayed_work_submit_periodic(struct k_delayed_work *, int32_t);
k_delayed_work_remaining_get(struct k_delayed_work *);
k_work_submit(struct k_work *)
k_work_init(struct k_work *, k_work_handler_t)
k_delayed_work_cancel(struct k_delayed_work *);
k_delayed_work_free(struct k_delayed_work *);
k_delayed_work_init(struct k_delayed_work *, k_work_handler_t);
k_uptime_get();
bt_mesh_timer_init();
bt_mesh_timer_deinit();
Files
loading...
SourceVuESP-IDF Framework and ExamplesESP-IDFcomponents/bt/esp_ble_mesh/common/include/mesh/timer.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
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
/* * SPDX-FileCopyrightText: 2016 Wind River Systems, Inc. * SPDX-FileContributor: 2018-2021 Espressif Systems (Shanghai) CO LTD * * SPDX-License-Identifier: Apache-2.0 *//* ... */ #ifndef _BLE_MESH_TIMER_H_ #define _BLE_MESH_TIMER_H_ #include "mesh/types.h" #include "mesh/slist.h" #include "mesh/atomic.h" #ifdef __cplusplus extern "C" { #endif /* number of nsec per usec */ #define NSEC_PER_USEC 1000 /* number of microseconds per millisecond */ #define USEC_PER_MSEC 1000 /* number of milliseconds per second */ #define MSEC_PER_SEC 1000 /* number of microseconds per second */ #define USEC_PER_SEC ((USEC_PER_MSEC) * (MSEC_PER_SEC)) /* number of nanoseconds per second */ #define NSEC_PER_SEC ((NSEC_PER_USEC) * (USEC_PER_MSEC) * (MSEC_PER_SEC)) /* timeout is not in use */ #define _INACTIVE (-1)6 defines struct k_work; /** * @typedef k_work_handler_t * @brief Work item handler function type. * * A work item's handler function is executed by a workqueue's thread * when the work item is processed by the workqueue. * * @param work Address of the work item. * * @return N/A *//* ... */ typedef void (*k_work_handler_t)(struct k_work *work); struct k_work { k_work_handler_t handler; int index; void *user_data; }{ ... }; #define _K_WORK_INITIALIZER(work_handler) \ { \ .handler = work_handler, \ .user_data = NULL, \ }{...} ... /** * @brief Generate null timeout delay. * * This macro generates a timeout delay that that instructs a kernel API * not to wait if the requested operation cannot be performed immediately. * * @return Timeout delay value. *//* ... */ #define K_NO_WAIT 0 /** * @brief Generate timeout delay from milliseconds. * * This macro generates a timeout delay that that instructs a kernel API * to wait up to @a ms milliseconds to perform the requested operation. * * @param ms Duration in milliseconds. * * @return Timeout delay value. *//* ... */ #define K_MSEC(ms) (ms) /** * @brief Generate timeout delay from seconds. * * This macro generates a timeout delay that that instructs a kernel API * to wait up to @a s seconds to perform the requested operation. * * @param s Duration in seconds. * * @return Timeout delay value. *//* ... */ #define K_SECONDS(s) K_MSEC((s) * MSEC_PER_SEC) /** * @brief Generate timeout delay from minutes. * * This macro generates a timeout delay that that instructs a kernel API * to wait up to @a m minutes to perform the requested operation. * * @param m Duration in minutes. * * @return Timeout delay value. *//* ... */ #define K_MINUTES(m) K_SECONDS((m) * 60) /** * @brief Generate timeout delay from hours. * * This macro generates a timeout delay that that instructs a kernel API * to wait up to @a h hours to perform the requested operation. * * @param h Duration in hours. * * @return Timeout delay value. *//* ... */ #define K_HOURS(h) K_MINUTES((h) * 60) /** * @brief Generate timeout delay from days. * * This macro generates a timeout delay that that instructs a kernel API * to wait up to @a d days to perform the requested operation. * * @param d Duration in days. * * @return Timeout delay value. *//* ... */ #define K_DAYS(d) K_HOURS((d) * 24) /** * @brief Generate infinite timeout delay. * * This macro generates a timeout delay that that instructs a kernel API * to wait as long as necessary to perform the requested operation. * * @return Timeout delay value. *//* ... */ #define K_FOREVER (-1)8 defines /** * @brief Get system uptime (32-bit version). * * This routine returns the lower 32-bits of the elapsed time since the system * booted, in milliseconds. * * This routine can be more efficient than k_uptime_get(), as it reduces the * need for interrupt locking and 64-bit math. However, the 32-bit result * cannot hold a system uptime time larger than approximately 50 days, so the * caller must handle possible rollovers. * * @return Current uptime. *//* ... */ uint32_t k_uptime_get_32(void); struct k_delayed_work { struct k_work work; }{ ... }; /** * @brief Submit a delayed work item to the system workqueue. * * This routine schedules work item @a work to be processed by the system * workqueue after a delay of @a delay milliseconds. The routine initiates * an asynchronous countdown for the work item and then returns to the caller. * Only when the countdown completes is the work item actually submitted to * the workqueue and becomes pending. * * Submitting a previously submitted delayed work item that is still * counting down cancels the existing submission and restarts the countdown * using the new delay. If the work item is currently pending on the * workqueue's queue because the countdown has completed it is too late to * resubmit the item, and resubmission fails without impacting the work item. * If the work item has already been processed, or is currently being processed, * its work is considered complete and the work item can be resubmitted. * * @warning * Work items submitted to the system workqueue should avoid using handlers * that block or yield since this may prevent the system workqueue from * processing other work items in a timely manner. * * @note Can be called by ISRs. * * @param work Address of delayed work item. * @param delay Delay before submitting the work item (in milliseconds). * * @retval 0 Work item countdown started. * @retval -EINPROGRESS Work item is already pending. * @retval -EINVAL Work item is being processed or has completed its work. * @retval -EADDRINUSE Work item is pending on a different workqueue. *//* ... */ int k_delayed_work_submit(struct k_delayed_work *work, int32_t delay); int k_delayed_work_submit_periodic(struct k_delayed_work *work, int32_t period); /** * @brief Get time remaining before a delayed work gets scheduled. * * This routine computes the (approximate) time remaining before a * delayed work gets executed. If the delayed work is not waiting to be * scheduled, it returns zero. * * @param work Delayed work item. * * @return Remaining time (in milliseconds). *//* ... */ int32_t k_delayed_work_remaining_get(struct k_delayed_work *work); /** * @brief Submit a work item to the system workqueue. * * This routine submits work item @a work to be processed by the system * workqueue. If the work item is already pending in the workqueue's queue * as a result of an earlier submission, this routine has no effect on the * work item. If the work item has already been processed, or is currently * being processed, its work is considered complete and the work item can be * resubmitted. * * @warning * Work items submitted to the system workqueue should avoid using handlers * that block or yield since this may prevent the system workqueue from * processing other work items in a timely manner. * * @note Can be called by ISRs. * * @param work Address of work item. * * @return N/A *//* ... */ static inline void k_work_submit(struct k_work *work) { if (work && work->handler) { work->handler(work); }{...} }{ ... } /** * @brief Initialize a work item. * * This routine initializes a workqueue work item, prior to its first use. * * @param work Address of work item. * @param handler Function to invoke each time work item is processed. * * @return N/A *//* ... */ static inline void k_work_init(struct k_work *work, k_work_handler_t handler) { work->handler = handler; }{ ... } int k_delayed_work_cancel(struct k_delayed_work *work); int k_delayed_work_free(struct k_delayed_work *work); int k_delayed_work_init(struct k_delayed_work *work, k_work_handler_t handler); /** * @brief Get system uptime. * * This routine returns the elapsed time since the system booted, * in milliseconds. * * @return Current uptime. *//* ... */ int64_t k_uptime_get(void); void bt_mesh_timer_init(void); void bt_mesh_timer_deinit(void); #ifdef __cplusplus }{...} #endif /* ... */ #endif /* _BLE_MESH_TIMER_H_ */
Details