fix(bt): Update bt lib for ESP32-C3 and ESP32-S3(18b5cbe)

- Fixed GPIO matrix function calls


(cherry picked from commit 25adf4c934)

Co-authored-by: chenjianhua <chenjianhua@espressif.com>
This commit is contained in:
Chen Jian Hua
2025-10-13 17:33:23 +08:00
parent 096e798a54
commit f8537f76bc
2 changed files with 7 additions and 1 deletions

View File

@@ -56,6 +56,7 @@
#include "esp_partition.h"
#include "hal/wdt_hal.h"
#endif // CONFIG_BT_CTRL_LE_LOG_STORAGE_EN
#include "esp_rom_gpio.h"
#if CONFIG_BT_ENABLED
/* Macro definition
@@ -2396,4 +2397,9 @@ static void * coex_schm_curr_phase_get_wrapper(void)
#endif
}
void btdm_gpio_matrix_out(uint32_t gpio, uint32_t signal_idx, bool out_inv, bool oen_inv)
{
esp_rom_gpio_connect_out_signal(gpio, signal_idx, out_inv, oen_inv);
}
#endif /* CONFIG_BT_ENABLED */