s60sc / ESP32-CAM_MJPEG2SD

ESP32 Camera motion capture application to record JPEGs to SD card as AVI files and stream to browser as MJPEG. If a microphone is installed then a WAV file is also created. Files can be uploaded via FTP or downloaded to browser.
GNU Affero General Public License v3.0
888 stars 209 forks source link

ESP32S3 (SPI_FAST_FLASH_BOOT) Issue #432

Closed wildmack closed 4 months ago

wildmack commented 4 months ago

I tried to upgrade from the ESP32 Cam to the ESP32S3 Cam to eliminate the lag issues I was having, but now in the serial monitor I get the below message message. I have tried different USB cables but I still get the same message. I have the board identified as ESP32S3 Dev Module and the following settings: // User's ESP32 cam board

if defined(CONFIG_IDF_TARGET_ESP32)

define CAMERA_MODEL_AI_THINKER

// User's ESP32S3 cam board

elif defined(CONFIG_IDF_TARGET_ESP32S3)

//#define CAMERA_MODEL_FREENOVE_ESP32S3_CAM

define CAMERA_MODEL_XIAO_ESP32S3

endif

This is the error message: Build:Mar 27 2021 rst:0x3 (RTC_SW_SYS_RST),boot:0x2b (SPI_FAST_FLASH_BOOT) Saved PC:0x403cdada SPIWP:0xee mode:DIO, clock div:1 load:0x3fce3808,len:0x44c load:0x403c9700,len:0xbd8 load:0x403cc700,len:0x2a80 entry 0x403c98d0 ESP-ROM:esp32s3-20210327

Any Ideas? Thanks Dave.......

bjesuslopezg commented 4 months ago

You need to be sure that the ESP32S3 you're using is actually N8R8 (Flash size 8 MB and PSRAM 8 MB). Once you validated that, then you need to make the right configurations in the Arduino IDE

Open the project with Arduino IDE and go to "Tools"

Select Flash Size: "8 MB (64 MB)" Select Partition scheme: "8M with spiffs (3 MB APP/1.5MB SPIFFS)" Select PSRAM: " QSPI PSRAM"

rjsachse commented 4 months ago

Do you have usb cdc enabled

bjesuslopezg commented 4 months ago

Do you have usb cdc enabled

No

wildmack commented 4 months ago

Should usb cdc be enabled ? Thanks Dave....

rjsachse commented 4 months ago

If your board is CAMERA_MODEL_XIAO_ESP32S3 then yes cdc should be enabled

wildmack commented 4 months ago

Thank you. Got everything working.