Try to fix webcam without PSRAM

see https://github.com/espressif/arduino-esp32/pull/6219/files
This commit is contained in:
Jason2866 2022-02-01 15:57:41 +01:00 committed by GitHub
parent 069035e26b
commit e146c21e0f
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 0 deletions

View File

@ -286,6 +286,7 @@ uint32_t WcSetup(int32_t fsiz) {
config.frame_size = FRAMESIZE_VGA; config.frame_size = FRAMESIZE_VGA;
config.jpeg_quality = 12; config.jpeg_quality = 12;
config.fb_count = 1; config.fb_count = 1;
config.fb_location = CAMERA_FB_IN_DRAM;
AddLog(LOG_LEVEL_DEBUG, PSTR("CAM: PSRAM not found")); AddLog(LOG_LEVEL_DEBUG, PSTR("CAM: PSRAM not found"));
} }