Skip to content

Commit 6424b52

Browse files
committed
Merge branch 'bugfix/fix_cble50y25_305' into 'master'
Fixed GPIO matrix function calls on ESP32-C3 and ESP32-S3(18b5cbe) Closes BLERP-2299 See merge request espressif/esp-idf!42507
2 parents 88444df + 25adf4c commit 6424b52

File tree

2 files changed

+7
-1
lines changed

2 files changed

+7
-1
lines changed

components/bt/controller/esp32c3/bt.c

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -60,6 +60,7 @@
6060
#include "esp_partition.h"
6161
#include "hal/wdt_hal.h"
6262
#endif // CONFIG_BT_CTRL_LE_LOG_STORAGE_EN
63+
#include "esp_rom_gpio.h"
6364
#if CONFIG_BT_ENABLED
6465

6566
/* Macro definition
@@ -2400,4 +2401,9 @@ static void * coex_schm_curr_phase_get_wrapper(void)
24002401
#endif
24012402
}
24022403

2404+
void btdm_gpio_matrix_out(uint32_t gpio, uint32_t signal_idx, bool out_inv, bool oen_inv)
2405+
{
2406+
esp_rom_gpio_connect_out_signal(gpio, signal_idx, out_inv, oen_inv);
2407+
}
2408+
24032409
#endif /* CONFIG_BT_ENABLED */

0 commit comments

Comments
 (0)