2023-01-09 08:29:41 -05:00
|
|
|
/*
|
|
|
|
* SPDX-FileCopyrightText: 2023 Espressif Systems (Shanghai) CO LTD
|
|
|
|
*
|
|
|
|
* SPDX-License-Identifier: Apache-2.0
|
|
|
|
*/
|
|
|
|
#ifndef __COEXIST_I154_H__
|
|
|
|
#define __COEXIST_I154_H__
|
|
|
|
|
2023-02-14 08:20:55 -05:00
|
|
|
#ifdef CONFIG_SOC_IEEE802154_SUPPORTED
|
2023-01-09 08:29:41 -05:00
|
|
|
typedef enum {
|
2023-03-10 01:31:33 -05:00
|
|
|
IEEE802154_HIGH = 1,
|
|
|
|
IEEE802154_MIDDLE,
|
|
|
|
IEEE802154_LOW,
|
|
|
|
IEEE802154_IDLE,
|
2023-01-09 08:29:41 -05:00
|
|
|
IEEE802154_EVENT_MAX,
|
|
|
|
} ieee802154_coex_event_t;
|
|
|
|
|
2023-03-10 01:31:33 -05: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);
|
2023-01-09 08:29:41 -05:00
|
|
|
#endif
|
|
|
|
|
|
|
|
#endif
|