mirror of
https://github.com/espressif/esp-idf.git
synced 2024-10-05 20:47:46 -04:00
Merge branch 'bugfix/btdm_synchronize_multiple_branch_of_bt_lib_v4.3' into 'release/v4.3'
Bugfix/btdm synchronize multiple branch of bt lib v4.3 See merge request espressif/esp-idf!12872
This commit is contained in:
commit
f1737a630d
@ -176,6 +176,14 @@ struct osi_funcs_t {
|
|||||||
int (* _coex_register_bt_cb)(coex_func_cb_t cb);
|
int (* _coex_register_bt_cb)(coex_func_cb_t cb);
|
||||||
uint32_t (* _coex_bb_reset_lock)(void);
|
uint32_t (* _coex_bb_reset_lock)(void);
|
||||||
void (* _coex_bb_reset_unlock)(uint32_t restore);
|
void (* _coex_bb_reset_unlock)(uint32_t restore);
|
||||||
|
int (* _coex_schm_register_btdm_callback)(void *callback);
|
||||||
|
void (* _coex_schm_status_bit_clear)(uint32_t type, uint32_t status);
|
||||||
|
void (* _coex_schm_status_bit_set)(uint32_t type, uint32_t status);
|
||||||
|
uint32_t (* _coex_schm_interval_get)(void);
|
||||||
|
uint8_t (* _coex_schm_curr_period_get)(void);
|
||||||
|
void *(* _coex_schm_curr_phase_get)(void);
|
||||||
|
int (* _coex_wifi_channel_get)(uint8_t *primary, uint8_t *secondary);
|
||||||
|
int (* _coex_register_wifi_channel_change_callback)(void *cb);
|
||||||
uint32_t _magic;
|
uint32_t _magic;
|
||||||
};
|
};
|
||||||
|
|
||||||
@ -224,6 +232,14 @@ extern int coex_bt_release(uint32_t event);
|
|||||||
extern int coex_register_bt_cb(coex_func_cb_t cb);
|
extern int coex_register_bt_cb(coex_func_cb_t cb);
|
||||||
extern uint32_t coex_bb_reset_lock(void);
|
extern uint32_t coex_bb_reset_lock(void);
|
||||||
extern void coex_bb_reset_unlock(uint32_t restore);
|
extern void coex_bb_reset_unlock(uint32_t restore);
|
||||||
|
extern int coex_schm_register_btdm_callback(void *callback);
|
||||||
|
extern void coex_schm_status_bit_clear(uint32_t type, uint32_t status);
|
||||||
|
extern void coex_schm_status_bit_set(uint32_t type, uint32_t status);
|
||||||
|
extern uint32_t coex_schm_interval_get(void);
|
||||||
|
extern uint8_t coex_schm_curr_period_get(void);
|
||||||
|
extern void * coex_schm_curr_phase_get(void);
|
||||||
|
extern int coex_wifi_channel_get(uint8_t *primary, uint8_t *secondary);
|
||||||
|
extern int coex_register_wifi_channel_change_callback(void *cb);
|
||||||
extern void coex_ble_adv_priority_high_set(bool high);
|
extern void coex_ble_adv_priority_high_set(bool high);
|
||||||
|
|
||||||
extern char _bss_start_btdm;
|
extern char _bss_start_btdm;
|
||||||
@ -294,7 +310,14 @@ static int coex_bt_release_wrapper(uint32_t event);
|
|||||||
static int coex_register_bt_cb_wrapper(coex_func_cb_t cb);
|
static int coex_register_bt_cb_wrapper(coex_func_cb_t cb);
|
||||||
static uint32_t coex_bb_reset_lock_wrapper(void);
|
static uint32_t coex_bb_reset_lock_wrapper(void);
|
||||||
static void coex_bb_reset_unlock_wrapper(uint32_t restore);
|
static void coex_bb_reset_unlock_wrapper(uint32_t restore);
|
||||||
|
static int coex_schm_register_btdm_callback_wrapper(void *callback);
|
||||||
|
static void coex_schm_status_bit_clear_wrapper(uint32_t type, uint32_t status);
|
||||||
|
static void coex_schm_status_bit_set_wrapper(uint32_t type, uint32_t status);
|
||||||
|
static uint32_t coex_schm_interval_get_wrapper(void);
|
||||||
|
static uint8_t coex_schm_curr_period_get_wrapper(void);
|
||||||
|
static void * coex_schm_curr_phase_get_wrapper(void);
|
||||||
|
static int coex_wifi_channel_get_wrapper(uint8_t *primary, uint8_t *secondary);
|
||||||
|
static int coex_register_wifi_channel_change_callback_wrapper(void *cb);
|
||||||
/* Local variable definition
|
/* Local variable definition
|
||||||
***************************************************************************
|
***************************************************************************
|
||||||
*/
|
*/
|
||||||
@ -348,6 +371,14 @@ static const struct osi_funcs_t osi_funcs_ro = {
|
|||||||
._coex_register_bt_cb = coex_register_bt_cb_wrapper,
|
._coex_register_bt_cb = coex_register_bt_cb_wrapper,
|
||||||
._coex_bb_reset_lock = coex_bb_reset_lock_wrapper,
|
._coex_bb_reset_lock = coex_bb_reset_lock_wrapper,
|
||||||
._coex_bb_reset_unlock = coex_bb_reset_unlock_wrapper,
|
._coex_bb_reset_unlock = coex_bb_reset_unlock_wrapper,
|
||||||
|
._coex_schm_register_btdm_callback = coex_schm_register_btdm_callback_wrapper,
|
||||||
|
._coex_schm_status_bit_clear = coex_schm_status_bit_clear_wrapper,
|
||||||
|
._coex_schm_status_bit_set = coex_schm_status_bit_set_wrapper,
|
||||||
|
._coex_schm_interval_get = coex_schm_interval_get_wrapper,
|
||||||
|
._coex_schm_curr_period_get = coex_schm_curr_period_get_wrapper,
|
||||||
|
._coex_schm_curr_phase_get = coex_schm_curr_phase_get_wrapper,
|
||||||
|
._coex_wifi_channel_get = coex_wifi_channel_get_wrapper,
|
||||||
|
._coex_register_wifi_channel_change_callback = coex_register_wifi_channel_change_callback_wrapper,
|
||||||
._magic = OSI_MAGIC_VALUE,
|
._magic = OSI_MAGIC_VALUE,
|
||||||
};
|
};
|
||||||
|
|
||||||
@ -1001,7 +1032,7 @@ static void coex_bt_wakeup_request_end(void)
|
|||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
int IRAM_ATTR coex_bt_request_wrapper(uint32_t event, uint32_t latency, uint32_t duration)
|
static int IRAM_ATTR coex_bt_request_wrapper(uint32_t event, uint32_t latency, uint32_t duration)
|
||||||
{
|
{
|
||||||
#if CONFIG_SW_COEXIST_ENABLE
|
#if CONFIG_SW_COEXIST_ENABLE
|
||||||
return coex_bt_request(event, latency, duration);
|
return coex_bt_request(event, latency, duration);
|
||||||
@ -1010,7 +1041,7 @@ int IRAM_ATTR coex_bt_request_wrapper(uint32_t event, uint32_t latency, uint32_t
|
|||||||
#endif
|
#endif
|
||||||
}
|
}
|
||||||
|
|
||||||
int IRAM_ATTR coex_bt_release_wrapper(uint32_t event)
|
static int IRAM_ATTR coex_bt_release_wrapper(uint32_t event)
|
||||||
{
|
{
|
||||||
#if CONFIG_SW_COEXIST_ENABLE
|
#if CONFIG_SW_COEXIST_ENABLE
|
||||||
return coex_bt_release(event);
|
return coex_bt_release(event);
|
||||||
@ -1019,7 +1050,7 @@ int IRAM_ATTR coex_bt_release_wrapper(uint32_t event)
|
|||||||
#endif
|
#endif
|
||||||
}
|
}
|
||||||
|
|
||||||
int coex_register_bt_cb_wrapper(coex_func_cb_t cb)
|
static int coex_register_bt_cb_wrapper(coex_func_cb_t cb)
|
||||||
{
|
{
|
||||||
#if CONFIG_SW_COEXIST_ENABLE
|
#if CONFIG_SW_COEXIST_ENABLE
|
||||||
return coex_register_bt_cb(cb);
|
return coex_register_bt_cb(cb);
|
||||||
@ -1028,7 +1059,7 @@ int coex_register_bt_cb_wrapper(coex_func_cb_t cb)
|
|||||||
#endif
|
#endif
|
||||||
}
|
}
|
||||||
|
|
||||||
uint32_t IRAM_ATTR coex_bb_reset_lock_wrapper(void)
|
static uint32_t IRAM_ATTR coex_bb_reset_lock_wrapper(void)
|
||||||
{
|
{
|
||||||
#if CONFIG_SW_COEXIST_ENABLE
|
#if CONFIG_SW_COEXIST_ENABLE
|
||||||
return coex_bb_reset_lock();
|
return coex_bb_reset_lock();
|
||||||
@ -1037,13 +1068,81 @@ uint32_t IRAM_ATTR coex_bb_reset_lock_wrapper(void)
|
|||||||
#endif
|
#endif
|
||||||
}
|
}
|
||||||
|
|
||||||
void IRAM_ATTR coex_bb_reset_unlock_wrapper(uint32_t restore)
|
static void IRAM_ATTR coex_bb_reset_unlock_wrapper(uint32_t restore)
|
||||||
{
|
{
|
||||||
#if CONFIG_SW_COEXIST_ENABLE
|
#if CONFIG_SW_COEXIST_ENABLE
|
||||||
coex_bb_reset_unlock(restore);
|
coex_bb_reset_unlock(restore);
|
||||||
#endif
|
#endif
|
||||||
}
|
}
|
||||||
|
|
||||||
|
static int coex_schm_register_btdm_callback_wrapper(void *callback)
|
||||||
|
{
|
||||||
|
#if CONFIG_SW_COEXIST_ENABLE
|
||||||
|
return coex_schm_register_btdm_callback(callback);
|
||||||
|
#else
|
||||||
|
return 0;
|
||||||
|
#endif
|
||||||
|
}
|
||||||
|
|
||||||
|
static void coex_schm_status_bit_clear_wrapper(uint32_t type, uint32_t status)
|
||||||
|
{
|
||||||
|
#if CONFIG_SW_COEXIST_ENABLE
|
||||||
|
coex_schm_status_bit_clear(type, status);
|
||||||
|
#endif
|
||||||
|
}
|
||||||
|
|
||||||
|
static void coex_schm_status_bit_set_wrapper(uint32_t type, uint32_t status)
|
||||||
|
{
|
||||||
|
#if CONFIG_SW_COEXIST_ENABLE
|
||||||
|
coex_schm_status_bit_set(type, status);
|
||||||
|
#endif
|
||||||
|
}
|
||||||
|
|
||||||
|
static uint32_t coex_schm_interval_get_wrapper(void)
|
||||||
|
{
|
||||||
|
#if CONFIG_SW_COEXIST_ENABLE
|
||||||
|
return coex_schm_interval_get();
|
||||||
|
#else
|
||||||
|
return 0;
|
||||||
|
#endif
|
||||||
|
}
|
||||||
|
|
||||||
|
static uint8_t coex_schm_curr_period_get_wrapper(void)
|
||||||
|
{
|
||||||
|
#if CONFIG_SW_COEXIST_ENABLE
|
||||||
|
return coex_schm_curr_period_get();
|
||||||
|
#else
|
||||||
|
return 1;
|
||||||
|
#endif
|
||||||
|
}
|
||||||
|
|
||||||
|
static void * coex_schm_curr_phase_get_wrapper(void)
|
||||||
|
{
|
||||||
|
#if CONFIG_SW_COEXIST_ENABLE
|
||||||
|
return coex_schm_curr_phase_get();
|
||||||
|
#else
|
||||||
|
return NULL;
|
||||||
|
#endif
|
||||||
|
}
|
||||||
|
|
||||||
|
static int coex_wifi_channel_get_wrapper(uint8_t *primary, uint8_t *secondary)
|
||||||
|
{
|
||||||
|
#if CONFIG_SW_COEXIST_ENABLE
|
||||||
|
return coex_wifi_channel_get(primary, secondary);
|
||||||
|
#else
|
||||||
|
return -1;
|
||||||
|
#endif
|
||||||
|
}
|
||||||
|
|
||||||
|
static int coex_register_wifi_channel_change_callback_wrapper(void *cb)
|
||||||
|
{
|
||||||
|
#if CONFIG_SW_COEXIST_ENABLE
|
||||||
|
return coex_register_wifi_channel_change_callback(cb);
|
||||||
|
#else
|
||||||
|
return -1;
|
||||||
|
#endif
|
||||||
|
}
|
||||||
|
|
||||||
bool esp_vhci_host_check_send_available(void)
|
bool esp_vhci_host_check_send_available(void)
|
||||||
{
|
{
|
||||||
return API_vhci_host_check_send_available();
|
return API_vhci_host_check_send_available();
|
||||||
|
@ -1 +1 @@
|
|||||||
Subproject commit a0f8c35197270b14a8dc50dec37b5ba0136c0fea
|
Subproject commit 55d1bc8b7ccbdcd19be0b9b52d6abfc7fad2866a
|
Loading…
x
Reference in New Issue
Block a user