Files
esp-idf/components/esp_coex/include/esp_coex_i154.h

30 lines
785 B
C
Raw Normal View History

2023-01-09 21:29:41 +08:00
/*
* SPDX-FileCopyrightText: 2023-2025 Espressif Systems (Shanghai) CO LTD
2023-01-09 21:29:41 +08:00
*
* SPDX-License-Identifier: Apache-2.0
*/
#ifndef __COEXIST_I154_H__
#define __COEXIST_I154_H__
typedef enum {
2023-03-10 14:31:33 +08:00
IEEE802154_HIGH = 1,
IEEE802154_MIDDLE,
IEEE802154_LOW,
IEEE802154_IDLE,
2023-01-09 21:29:41 +08:00
IEEE802154_EVENT_MAX,
} ieee802154_coex_event_t;
typedef struct {
ieee802154_coex_event_t idle;
ieee802154_coex_event_t txrx;
ieee802154_coex_event_t txrx_at;
} esp_ieee802154_coex_config_t;
2023-03-10 14:31:33 +08:00
void esp_coex_ieee802154_txrx_pti_set(ieee802154_coex_event_t event);
void esp_coex_ieee802154_ack_pti_set(ieee802154_coex_event_t event);
void esp_coex_ieee802154_coex_break_notify(void);
void esp_coex_ieee802154_extcoex_tx_stage(void);
void esp_coex_ieee802154_extcoex_rx_stage(void);
2023-01-09 21:29:41 +08:00
#endif