修复T-CameraPlus-S3_V1.2板子摄像头不能正常使用问题 (#758)

* Resolve the issue where the camera on the T-CameraPlus-S3_V1.2 board cannot be used normally.
This commit is contained in:
LILYGO_L
2025-06-05 17:24:43 +08:00
committed by GitHub
parent 54ff46788b
commit 2f1229f09f
2 changed files with 9 additions and 3 deletions

View File

@@ -103,7 +103,7 @@ private:
void InitI2c(){
// Initialize I2C peripheral
i2c_master_bus_config_t i2c_bus_config = {
.i2c_port = I2C_NUM_1,
.i2c_port = I2C_NUM_0,
.sda_io_num = TOUCH_I2C_SDA_PIN,
.scl_io_num = TOUCH_I2C_SCL_PIN,
.clk_source = I2C_CLK_SRC_DEFAULT,
@@ -252,9 +252,15 @@ private:
config.pin_pclk = PCLK_GPIO_NUM;
config.pin_vsync = VSYNC_GPIO_NUM;
config.pin_href = HREF_GPIO_NUM;
#ifdef CONFIG_BOARD_TYPE_LILYGO_T_CAMERAPLUS_S3_V1_0_V1_1
config.pin_sccb_sda = -1; // 这里如果写-1 表示使用已经初始化的I2C接口
config.pin_sccb_scl = SIOC_GPIO_NUM;
config.sccb_i2c_port = 1; // 这里如果写1 默认使用I2C1
config.sccb_i2c_port = 0; // 这里如果写0 默认使用I2C0
#elif defined CONFIG_BOARD_TYPE_LILYGO_T_CAMERAPLUS_S3_V1_2
config.pin_sccb_sda = SIOD_GPIO_NUM;
config.pin_sccb_scl = SIOC_GPIO_NUM;
config.sccb_i2c_port = 1;
#endif
config.pin_pwdn = PWDN_GPIO_NUM;
config.pin_reset = RESET_GPIO_NUM;
config.xclk_freq_hz = XCLK_FREQ_HZ;

View File

@@ -2,7 +2,7 @@
* @Description: None
* @Author: LILYGO_L
* @Date: 2024-11-11 11:36:49
* @LastEditTime: 2025-04-25 15:53:53
* @LastEditTime: 2025-06-03 17:37:08
* @License: GPL 3.0
*/
#pragma once