Home
last modified time | relevance | path

Searched refs:secondary (Results 1 – 18 of 18) sorted by relevance

/hal_espressif-latest/zephyr/port/coex/
Dcoex_stubs.c132 int coex_wifi_channel_set(uint8_t primary, uint8_t secondary) in coex_wifi_channel_set() argument
135 (void)secondary; in coex_wifi_channel_set()
146 int coex_wifi_channel_get(uint8_t *primary, uint8_t *secondary) in coex_wifi_channel_get() argument
151 if (secondary) { in coex_wifi_channel_get()
152 *secondary = 0; in coex_wifi_channel_get()
/hal_espressif-latest/components/esp_coex/include/private/
Desp_coexist_internal.h43 typedef void (* coex_wifi_channel_change_cb_t)(uint8_t primary, uint8_t secondary);
138 int coex_wifi_channel_set(uint8_t primary, uint8_t secondary);
147 int coex_wifi_channel_get(uint8_t *primary, uint8_t *secondary);
/hal_espressif-latest/zephyr/esp32/src/bt/
Desp_bt_adapter.c150 int (* _coex_wifi_channel_get)(uint8_t *primary, uint8_t *secondary);
205 extern int coex_wifi_channel_get(uint8_t *primary, uint8_t *secondary);
264 static int coex_wifi_channel_get_wrapper(uint8_t *primary, uint8_t *secondary);
935 static int coex_wifi_channel_get_wrapper(uint8_t *primary, uint8_t *secondary) in coex_wifi_channel_get_wrapper() argument
938 return coex_wifi_channel_get(primary, secondary); in coex_wifi_channel_get_wrapper()
/hal_espressif-latest/components/esp_wifi/esp32c6/
Desp_adapter.c417 static int coex_wifi_channel_set_wrapper(uint8_t primary, uint8_t secondary) in coex_wifi_channel_set_wrapper() argument
420 return coex_wifi_channel_set(primary, secondary); in coex_wifi_channel_set_wrapper()
/hal_espressif-latest/components/esp_wifi/esp32s2/
Desp_adapter.c466 static int coex_wifi_channel_set_wrapper(uint8_t primary, uint8_t secondary) in coex_wifi_channel_set_wrapper() argument
469 return coex_wifi_channel_set(primary, secondary); in coex_wifi_channel_set_wrapper()
/hal_espressif-latest/components/esp_wifi/esp32/
Desp_adapter.c475 static int coex_wifi_channel_set_wrapper(uint8_t primary, uint8_t secondary) in coex_wifi_channel_set_wrapper() argument
478 return coex_wifi_channel_set(primary, secondary); in coex_wifi_channel_set_wrapper()
/hal_espressif-latest/components/esp_wifi/esp32c2/
Desp_adapter.c411 static int coex_wifi_channel_set_wrapper(uint8_t primary, uint8_t secondary) in coex_wifi_channel_set_wrapper() argument
414 return coex_wifi_channel_set(primary, secondary); in coex_wifi_channel_set_wrapper()
/hal_espressif-latest/components/esp_wifi/esp32c3/
Desp_adapter.c428 static int coex_wifi_channel_set_wrapper(uint8_t primary, uint8_t secondary) in coex_wifi_channel_set_wrapper() argument
431 return coex_wifi_channel_set(primary, secondary); in coex_wifi_channel_set_wrapper()
/hal_espressif-latest/components/esp_wifi/esp32s3/
Desp_adapter.c483 static int coex_wifi_channel_set_wrapper(uint8_t primary, uint8_t secondary) in coex_wifi_channel_set_wrapper() argument
486 return coex_wifi_channel_set(primary, secondary); in coex_wifi_channel_set_wrapper()
/hal_espressif-latest/components/esp_wifi/include/esp_private/
Dwifi_os_adapter.h140 int (* _coex_wifi_channel_set)(uint8_t primary, uint8_t secondary);
/hal_espressif-latest/zephyr/esp32/src/wifi/
Desp_wifi_adapter.c569 static int coex_wifi_channel_set_wrapper(uint8_t primary, uint8_t secondary) in coex_wifi_channel_set_wrapper() argument
572 return coex_wifi_channel_set(primary, secondary); in coex_wifi_channel_set_wrapper()
/hal_espressif-latest/zephyr/esp32s2/src/wifi/
Desp_wifi_adapter.c574 static int coex_wifi_channel_set_wrapper(uint8_t primary, uint8_t secondary) in coex_wifi_channel_set_wrapper() argument
577 return coex_wifi_channel_set(primary, secondary); in coex_wifi_channel_set_wrapper()
/hal_espressif-latest/zephyr/esp32s3/src/wifi/
Desp_wifi_adapter.c584 static int coex_wifi_channel_set_wrapper(uint8_t primary, uint8_t secondary) in coex_wifi_channel_set_wrapper() argument
587 return coex_wifi_channel_set(primary, secondary); in coex_wifi_channel_set_wrapper()
/hal_espressif-latest/zephyr/esp32c2/src/wifi/
Desp_wifi_adapter.c651 static int coex_wifi_channel_set_wrapper(uint8_t primary, uint8_t secondary) in coex_wifi_channel_set_wrapper() argument
654 return coex_wifi_channel_set(primary, secondary); in coex_wifi_channel_set_wrapper()
/hal_espressif-latest/zephyr/esp32c3/src/wifi/
Desp_wifi_adapter.c651 static int coex_wifi_channel_set_wrapper(uint8_t primary, uint8_t secondary) in coex_wifi_channel_set_wrapper() argument
654 return coex_wifi_channel_set(primary, secondary); in coex_wifi_channel_set_wrapper()
/hal_espressif-latest/zephyr/esp32c6/src/wifi/
Desp_wifi_adapter.c655 static int coex_wifi_channel_set_wrapper(uint8_t primary, uint8_t secondary) in coex_wifi_channel_set_wrapper() argument
658 return coex_wifi_channel_set(primary, secondary); in coex_wifi_channel_set_wrapper()
/hal_espressif-latest/components/esp_system/
DKconfig250 prompt "Channel for console secondary output"
253 This secondary option supports output through other specific port like USB_SERIAL_JTAG
254 …when UART0 port as a primary is selected but not connected. This secondary output currently only s…
256 input through this secondary port, please change the primary config to this port
259 bool "No secondary console"
/hal_espressif-latest/components/bt/controller/esp32/
Dbt.c173 int (* _coex_wifi_channel_get)(uint8_t *primary, uint8_t *secondary);
312 static int coex_wifi_channel_get_wrapper(uint8_t *primary, uint8_t *secondary);
1198 static int coex_wifi_channel_get_wrapper(uint8_t *primary, uint8_t *secondary) in coex_wifi_channel_get_wrapper() argument
1201 return coex_wifi_channel_get(primary, secondary); in coex_wifi_channel_get_wrapper()