main/boards: Add camera support for M5Stack CoreS3. (#686)

This commit is contained in:
Create123
2025-05-27 09:55:29 +08:00
committed by GitHub
parent 3a2e6875b6
commit 391aa74abe
4 changed files with 3026 additions and 18 deletions

View File

@@ -40,4 +40,27 @@
#define DISPLAY_BACKLIGHT_OUTPUT_INVERT true
/* Camera pins */
#define CAMERA_PIN_PWDN GPIO_NUM_NC
#define CAMERA_PIN_RESET GPIO_NUM_NC
#define CAMERA_PIN_XCLK GPIO_NUM_NC // 像素时钟 (固定由 20MHz 外部晶振输入)
#define CAMERA_PIN_SIOD GPIO_NUM_NC // 串行时钟 Using existing I2C port
#define CAMERA_PIN_SIOC GPIO_NUM_NC // 串行时钟 Using existing I2C port
#define CAMERA_PIN_D0 GPIO_NUM_39
#define CAMERA_PIN_D1 GPIO_NUM_40
#define CAMERA_PIN_D2 GPIO_NUM_41
#define CAMERA_PIN_D3 GPIO_NUM_42
#define CAMERA_PIN_D4 GPIO_NUM_15
#define CAMERA_PIN_D5 GPIO_NUM_16
#define CAMERA_PIN_D6 GPIO_NUM_48
#define CAMERA_PIN_D7 GPIO_NUM_47
#define CAMERA_PIN_VSYNC GPIO_NUM_46
#define CAMERA_PIN_HREF GPIO_NUM_38
#define CAMERA_PIN_PCLK GPIO_NUM_45
#define XCLK_FREQ_HZ 20000000
#endif // _BOARD_CONFIG_H_