mirror of
https://github.com/espressif/esp-idf.git
synced 2026-08-18 06:35:35 +03:00
esp_coex: correct Kconfig name
This commit is contained in:
@@ -6,7 +6,7 @@
|
||||
#ifndef __COEXIST_I154_H__
|
||||
#define __COEXIST_I154_H__
|
||||
|
||||
#ifdef SOC_IEEE802154_SUPPORTED
|
||||
#ifdef CONFIG_SOC_IEEE802154_SUPPORTED
|
||||
typedef enum {
|
||||
IEEE802154_RISK_TX = 1,
|
||||
IEEE802154_TX_AT,
|
||||
@@ -17,7 +17,7 @@ typedef enum {
|
||||
IEEE802154_EVENT_MAX,
|
||||
} ieee802154_coex_event_t;
|
||||
|
||||
void esp_ieee802154_coex_pti_set(ieee802154_coex_event_t event);
|
||||
void esp_coex_ieee802154_pti_set(ieee802154_coex_event_t event);
|
||||
#endif
|
||||
|
||||
#endif
|
||||
@@ -25,22 +25,7 @@ void wifi_int_restore_wrapper(void *wifi_int_mux, uint32_t tmp);
|
||||
|
||||
void task_yield_from_isr_wrapper(void);
|
||||
|
||||
#if CONFIG_IDF_TARGET_ESP32 || CONFIG_IDF_TARGET_ESP32S2 || CONFIG_IDF_TARGET_ESP32S3
|
||||
|
||||
void *internal_semphr_create_wrapper(uint32_t max, uint32_t init);
|
||||
|
||||
void internal_semphr_delete_wrapper(void *semphr);
|
||||
|
||||
int32_t internal_semphr_take_from_isr_wrapper(void *semphr, void *hptw);
|
||||
|
||||
int32_t internal_semphr_give_from_isr_wrapper(void *semphr, void *hptw);
|
||||
|
||||
int32_t internal_semphr_take_wrapper(void *semphr, uint32_t block_time_tick);
|
||||
|
||||
int32_t internal_semphr_give_wrapper(void *semphr);
|
||||
|
||||
#else
|
||||
|
||||
#if !defined(CONFIG_IDF_TARGET_ESP32) && !defined(CONFIG_IDF_TARGET_ESP32S2) && !defined(CONFIG_IDF_TARGET_ESP32S3)
|
||||
void * semphr_create_wrapper(uint32_t max, uint32_t init);
|
||||
|
||||
void semphr_delete_wrapper(void *semphr);
|
||||
@@ -52,7 +37,6 @@ int32_t semphr_give_from_isr_wrapper(void *semphr, void *hptw);
|
||||
int32_t semphr_take_wrapper(void *semphr, uint32_t block_time_tick);
|
||||
|
||||
int32_t semphr_give_wrapper(void *semphr);
|
||||
|
||||
#endif
|
||||
|
||||
void timer_disarm_wrapper(void *timer);
|
||||
|
||||
Reference in New Issue
Block a user