Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions bsp/esp32_s3_korvo_2/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
# ChangeLog

## V3.0.2

* Fix I2C master transmission issue by adding glitch filtering

## v3.0.1

* Added missing public driver/i2c_master.h include
Expand Down
1 change: 1 addition & 0 deletions bsp/esp32_s3_korvo_2/esp32_s3_korvo_2.c
Original file line number Diff line number Diff line change
Expand Up @@ -120,6 +120,7 @@ esp_err_t bsp_i2c_init(void)
.sda_io_num = BSP_I2C_SDA,
.scl_io_num = BSP_I2C_SCL,
.clk_source = I2C_CLK_SRC_DEFAULT,
.glitch_ignore_cnt = 7,
.flags.enable_internal_pullup = true,
};
BSP_ERROR_CHECK_RETURN_ERR(i2c_new_master_bus(&i2c_config, &i2c_handle));
Expand Down
2 changes: 1 addition & 1 deletion bsp/esp32_s3_korvo_2/idf_component.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
version: "3.0.1"
version: "3.0.2"
description: Board Support Package (BSP) for ESP32-S3-Korvo-2
url: https://github.com/espressif/esp-bsp/tree/master/bsp/esp32_s3_korvo_2

Expand Down