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

24 lines
499 B
C
Raw Normal View History

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 {
IEEE802154_RISK_TX = 1,
IEEE802154_TX_AT,
IEEE802154_RX_AT,
IEEE802154_ACK,
IEEE802154_NORMAL,
IEEE802154_IDLE_RX,
IEEE802154_EVENT_MAX,
} ieee802154_coex_event_t;
2023-02-14 08:20:55 -05:00
void esp_coex_ieee802154_pti_set(ieee802154_coex_event_t event);
2023-01-09 08:29:41 -05:00
#endif
#endif