Select one of the symbols to view example projects that use it.
 
Outline
#define __ESP_COEXIST_INTERNAL_H__
#include <stdbool.h>
#include "esp_coexist.h"
#include "private/esp_coexist_adapter.h"
coex_prefer_t
coex_schm_callback_type_t
coex_schm_st_type_t
#define COEX_STATUS_GET_WIFI_BITMAP
#define COEX_STATUS_GET_BLE_BITMAP
#define COEX_STATUS_GET_BT_BITMAP
coex_func_cb_t
coex_set_lpclk_source_callback_t
coex_wifi_channel_change_cb_t
coex_pre_init();
coex_init();
coex_deinit();
coex_enable();
coex_disable();
coex_version_get();
coex_version_get_value(coex_version_t *);
coex_preference_set(coex_prefer_t);
coex_status_get(uint8_t);
coex_wifi_request(uint32_t, uint32_t, uint32_t);
coex_wifi_release(uint32_t);
coex_wifi_channel_set(uint8_t, uint8_t);
coex_wifi_channel_get(uint8_t *, uint8_t *);
coex_wifi_register_update_lpclk_callback(coex_set_lpclk_source_callback_t);
coex_bt_request(uint32_t, uint32_t, uint32_t);
coex_bt_release(uint32_t);
coex_register_bt_cb(coex_func_cb_t);
coex_bb_reset_lock();
coex_bb_reset_unlock(uint32_t);
coex_register_wifi_channel_change_callback(coex_wifi_channel_change_cb_t);
coex_update_lpclk_interval();
coex_event_duration_get(uint32_t, uint32_t *);
coex_schm_status_bit_clear(uint32_t, uint32_t);
coex_schm_status_bit_set(uint32_t, uint32_t);
coex_schm_interval_set(uint32_t);
coex_schm_interval_get();
coex_schm_curr_period_get();
coex_schm_curr_phase_get();
coex_schm_curr_phase_idx_set(int);
coex_schm_curr_phase_idx_get();
coex_register_start_cb(int (*)(void));
coex_schm_process_restart();
coex_schm_register_callback(coex_schm_callback_type_t, void *);
esp_coex_adapter_register(coex_adapter_funcs_t *);
esp_coex_adapter_funcs_md5_check(const char *);
Files
loading...
SourceVuESP-IDF Framework and ExamplesESP-IDFcomponents/esp_coex/include/private/esp_coexist_internal.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
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
/* * SPDX-FileCopyrightText: 2018-2024 Espressif Systems (Shanghai) CO LTD * * SPDX-License-Identifier: Apache-2.0 *//* ... */ #ifndef __ESP_COEXIST_INTERNAL_H__ #define __ESP_COEXIST_INTERNAL_H__ #include <stdbool.h> #include "esp_coexist.h" #include "private/esp_coexist_adapter.h" #ifdef __cplusplus extern "C" { #endif typedef enum { COEX_PREFER_WIFI = 0, COEX_PREFER_BT, COEX_PREFER_BALANCE, COEX_PREFER_NUM, }{ ... } coex_prefer_t; typedef enum { COEX_SCHM_CALLBACK_TYPE_WIFI = 0, COEX_SCHM_CALLBACK_TYPE_BT, COEX_SCHM_CALLBACK_TYPE_I154, }{ ... } coex_schm_callback_type_t; typedef enum { COEX_SCHM_ST_TYPE_WIFI = 0, COEX_SCHM_ST_TYPE_BLE, COEX_SCHM_ST_TYPE_BT, }{ ... } coex_schm_st_type_t; #define COEX_STATUS_GET_WIFI_BITMAP (1 << COEX_SCHM_ST_TYPE_WIFI) #define COEX_STATUS_GET_BLE_BITMAP (1 << COEX_SCHM_ST_TYPE_BLE) #define COEX_STATUS_GET_BT_BITMAP (1 << COEX_SCHM_ST_TYPE_BT) typedef void (* coex_func_cb_t)(uint32_t event, int sched_cnt); typedef esp_err_t (* coex_set_lpclk_source_callback_t)(void); typedef void (* coex_wifi_channel_change_cb_t)(uint8_t primary, uint8_t secondary); /** * @brief Pre-Init software coexist * extern function for internal use. * * @return Init ok or failed. *//* ... */ esp_err_t coex_pre_init(void); /** * @brief Init software coexist * extern function for internal use. * * @return Init ok or failed. *//* ... */ esp_err_t coex_init(void); /** * @brief De-init software coexist * extern function for internal use. *//* ... */ void coex_deinit(void); /** * @brief Enable software coexist * extern function for internal use. * * @return Enable ok or failed. *//* ... */ esp_err_t coex_enable(void); /** * @brief Disable software coexist * extern function for internal use. *//* ... */ void coex_disable(void); /** * @brief Get software coexist version string * extern function for internal use. * @return : version string *//* ... */ const char *coex_version_get(void); /** * @brief Get software coexist version value * extern function for internal use. * @param ptr_version : points to version structure * @return : ESP_OK - success, other - failed *//* ... */ esp_err_t coex_version_get_value(coex_version_t* ptr_version); /** * @brief Coexist performance preference set from libbt.a * extern function for internal use. * * @param prefer : the prefer enumeration value * @return : ESP_OK - success, other - failed *//* ... */ esp_err_t coex_preference_set(coex_prefer_t prefer); /** * @brief Get software coexist status. * * @param bitmap : bitmap of the module getting status. * @return : software coexist status *//* ... */ uint32_t coex_status_get(uint8_t bitmap); /** * @brief WiFi requests coexistence. * * @param event : WiFi event * @param latency : WiFi will request coexistence after latency * @param duration : duration for WiFi to request coexistence * @return : 0 - success, other - failed *//* ... */ int coex_wifi_request(uint32_t event, uint32_t latency, uint32_t duration); /** * @brief WiFi release coexistence. * * @param event : WiFi event * @return : 0 - success, other - failed *//* ... */ int coex_wifi_release(uint32_t event); /** * @brief Set WiFi channel to coexistence module. * * @param primary : WiFi primary channel * @param secondary : WiFi secondary channel * @return : 0 - success, other - failed *//* ... */ int coex_wifi_channel_set(uint8_t primary, uint8_t secondary); /** * @brief Get WiFi channel from coexistence module. * * @param primary : pointer to value of WiFi primary channel * @param secondary : pointer to value of WiFi secondary channel * @return : 0 - success, other - failed *//* ... */ int coex_wifi_channel_get(uint8_t *primary, uint8_t *secondary); /** * @brief Register application callback function to Wi-Fi update low power clock module. * * @param callback : Wi-Fi update low power clock callback function *//* ... */ void coex_wifi_register_update_lpclk_callback(coex_set_lpclk_source_callback_t callback); /** * @brief Bluetooth requests coexistence * * @param event : Bluetooth event * @param latency : Bluetooth will request coexistence after latency * @param duration : duration for Bluetooth to request coexistence * @return : 0 - success, other - failed *//* ... */ int coex_bt_request(uint32_t event, uint32_t latency, uint32_t duration); /** * @brief Bluetooth release coexistence. * * @param event : Bluetooth event * @return : 0 - success, other - failed *//* ... */ int coex_bt_release(uint32_t event); #if CONFIG_IDF_TARGET_ESP32 /** * @brief Bluetooth registers callback function to coexistence module * This function is only used on ESP32. * * @param callback: callback function registered to coexistence module * @return : 0 - success, other - failed *//* ... */ int coex_register_bt_cb(coex_func_cb_t callback); /** * @brief To acquire the spin-lock used in resetting Bluetooth baseband. * This function is only used to workaround ESP32 hardware issue. * * @return : value of the spinlock to be restored *//* ... */ uint32_t coex_bb_reset_lock(void); /** * @brief To release the spin-lock used in resetting Bluetooth baseband. * This function is only used to workaround ESP32 hardware issue. * * @param restore: value of the spinlock returned from previous call of coex_bb_rest_lock *//* ... */ void coex_bb_reset_unlock(uint32_t restore);/* ... */ #endif /* CONFIG_IDF_TARGET_ESP32 */ /** * @brief Bluetooth registers callback function to receive notification when Wi-Fi channel changes * * @param callback: callback function registered to coexistence module * @return : 0 - success, other - failed *//* ... */ int coex_register_wifi_channel_change_callback(coex_wifi_channel_change_cb_t callback); /** * @brief Update low power clock interval *//* ... */ void coex_update_lpclk_interval(void); /** * @brief Get coexistence event duration. * * @param event : Coexistence event * @param duration: Coexistence event duration * @return : 0 - success, other - failed *//* ... */ int coex_event_duration_get(uint32_t event, uint32_t *duration); #if SOC_COEX_HW_PTI /** * @brief Get coexistence event priority. * * @param event : Coexistence event * @param pti: Coexistence event priority * @return : 0 - success, other - failed *//* ... */ int coex_pti_get(uint32_t event, uint8_t *pti);/* ... */ #endif /** * @brief Clear coexistence status. * * @param type : Coexistence status type * @param status: Coexistence status *//* ... */ void coex_schm_status_bit_clear(uint32_t type, uint32_t status); /** * @brief Set coexistence status. * * @param type : Coexistence status type * @param status: Coexistence status *//* ... */ void coex_schm_status_bit_set(uint32_t type, uint32_t status); /** * @brief Set coexistence scheme interval. * * @param interval : Coexistence scheme interval * @return : 0 - success, other - failed *//* ... */ int coex_schm_interval_set(uint32_t interval); /** * @brief Get coexistence scheme interval. * * @return : Coexistence scheme interval *//* ... */ uint32_t coex_schm_interval_get(void); /** * @brief Get current coexistence scheme period. * * @return : Coexistence scheme period *//* ... */ uint8_t coex_schm_curr_period_get(void); /** * @brief Get current coexistence scheme phase. * * @return : Coexistence scheme phase *//* ... */ void * coex_schm_curr_phase_get(void); /** * @brief Set current coexistence scheme phase index. * * @param idx : Coexistence scheme phase index * @return : 0 - success, other - failed *//* ... */ int coex_schm_curr_phase_idx_set(int idx); /** * @brief Get current coexistence scheme phase index. * * @return : Coexistence scheme phase index *//* ... */ int coex_schm_curr_phase_idx_get(void); /** * @brief Register WiFi callback for coexistence starts. * * @param cb : WiFi callback * @return : 0 - success, other - failed *//* ... */ int coex_register_start_cb(int (* cb)(void)); /** * @brief Restart current coexistence scheme. * * @return : 0 - success, other - failed *//* ... */ int coex_schm_process_restart(void); /** * @brief Register callback for coexistence scheme. * * @param type : callback type * @param callback : callback * @return : 0 - success, other - failed *//* ... */ int coex_schm_register_callback(coex_schm_callback_type_t type, void *callback); /** * @brief Register coexistence adapter functions. * * @param funcs : coexistence adapter functions * @return : ESP_OK - success, other - failed *//* ... */ esp_err_t esp_coex_adapter_register(coex_adapter_funcs_t *funcs); #if CONFIG_EXTERNAL_COEX_ENABLE /** * @brief Set external coexistence advanced information, like working mode. * * @param out_pti1 This parameter no longer works, will be deprecated and later removed in future releases. * @param out_pti2 This parameter no longer works, will be deprecated and later removed in future releases. * * @return * - ESP_OK: succeed *//* ... */ esp_err_t esp_coex_external_params(esp_external_coex_advance_t coex_info, uint32_t out_pti1, uint32_t out_pti2); /** * @brief Set external coexistence pti level and enable it. * * @param level1 external coex low pti * @param level2 external coex mid pti * @param level3 external coex high pti * * @return * - ESP_OK: succeed *//* ... */ esp_err_t esp_coex_external_set(esp_coex_pti_level_t level1, esp_coex_pti_level_t level2, esp_coex_pti_level_t level3); /** * @brief Disable external coexist * * @return * - ESP_OK: succeed *//* ... */ void esp_coex_external_stop(void); /** * @brief Set external coexistence wire type. * * @param wire_type Set external coexistence wire type. * *//* ... */ void esp_coex_external_set_wire_type(external_coex_wire_t wire_type); #if SOC_EXTERNAL_COEX_LEADER_TX_LINE /** * @brief Enable external coexist tx line * * @param en Enable external coex tx line * * @return * - ESP_OK: succeed *//* ... */ void esp_coex_external_set_txline(bool en);/* ... */ #endif /*SOC_EXTERNAL_COEX_LEADER_TX_LINE*//* ... */ #endif /*External Coex*/ #if CONFIG_ESP_COEX_POWER_MANAGEMENT /** * @brief Set coexist scheme flexible period * * @param period flexible period * * @return * - ESP_OK: succeed *//* ... */ int coex_schm_flexible_period_set(uint8_t period); /** * @brief Get coexist scheme flexible period * * @return Coexist scheme flexible period *//* ... */ uint8_t coex_schm_flexible_period_get(void);/* ... */ #endif /** * @brief Check the MD5 values of the coexistence adapter header files in IDF and WiFi library * * @attention 1. It is used for internal CI version check * * @return * - ESP_OK : succeed * - ESP_WIFI_INVALID_ARG : MD5 check fail *//* ... */ esp_err_t esp_coex_adapter_funcs_md5_check(const char *md5); #ifdef __cplusplus }{...} #endif /* ... */ #endif /* __ESP_COEXIST_INTERNAL_H__ */
Details
Show:
from
Types: Columns:
This file uses the notable symbols shown below. Click anywhere in the file to view more details.