Skip to content

Commit 1cd2c92

Browse files
authored
Merge pull request #554 from PumpkinLin314/fix/korvo_2_i2c_master_issue
fix(korvo_2): Fix I2C master transmission issue by adding glitch filtering (BSP-663)
2 parents 225ab53 + 8d9e82d commit 1cd2c92

File tree

3 files changed

+6
-1
lines changed

3 files changed

+6
-1
lines changed

bsp/esp32_s3_korvo_2/CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,9 @@
11
# ChangeLog
22

3+
## V3.0.2
4+
5+
* Fix I2C master transmission issue by adding glitch filtering
6+
37
## v3.0.1
48

59
* Added missing public driver/i2c_master.h include

bsp/esp32_s3_korvo_2/esp32_s3_korvo_2.c

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -120,6 +120,7 @@ esp_err_t bsp_i2c_init(void)
120120
.sda_io_num = BSP_I2C_SDA,
121121
.scl_io_num = BSP_I2C_SCL,
122122
.clk_source = I2C_CLK_SRC_DEFAULT,
123+
.glitch_ignore_cnt = 7,
123124
.flags.enable_internal_pullup = true,
124125
};
125126
BSP_ERROR_CHECK_RETURN_ERR(i2c_new_master_bus(&i2c_config, &i2c_handle));

bsp/esp32_s3_korvo_2/idf_component.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
version: "3.0.1"
1+
version: "3.0.2"
22
description: Board Support Package (BSP) for ESP32-S3-Korvo-2
33
url: https://github.com/espressif/esp-bsp/tree/master/bsp/esp32_s3_korvo_2
44

0 commit comments

Comments
 (0)