Page 1 of 1

Problem flashing ESP32Cam - "Detected camera not supported"

Posted: Wed Apr 01, 2020 12:29 am
by Munque
Able to flash the device, but can't get the device started (See serial output below):

Tech specs:
MCU: AI Thinker ESP32Cam (that has worked just fine in the past)
Computer: MacBook Pro using on OS 10.15.4 (latest)
Arduino IDE: v1.8.12 (latest)
SiLabs Driver: v5.3.5 (latest)
ESP32 board package version 1.0.4 (latest)
Tools > Board > "AI Thinker ESP32-Cam"

Serial Monitor Output after flash:

Code: Select all

rst:0x1 (POWERON_RESET),boot:0x13 (SPI_FAST_FLASH_BOOT)
configsip: 0, SPIWP:0xee
clk_drv:0x00,q_drv:0x00,d_drv:0x00,cs0_drv:0x00,hd_drv:0x00,wp_drv:0x00
mode:DIO, clock div:1
load:0x3fff0018,len:4
load:0x3fff001c,len:1216
ho 0 tail 12 room 4
load:0x40078000,len:9720
ho 0 tail 12 room 4
load:0x40080400,len:6352
entry 0x400806b8

[E][camera.c:1049] camera_probe(): Detected camera not supported.
[E][camera.c:1249] esp_camera_init(): Camera probe failed with error 0x20004

Re: Problem flashing ESP32Cam - "Detected camera not supported"

Posted: Sat May 02, 2020 5:40 am
by jwaresolutions
I just had this issue. i got it working

1) choose the "AI Thinker ESP-32 CAM"
2) remove the comment for "#define CAMERA_MODEL_AI_THINKER"
3) make sure all other devined models are commented out <<<< this was my mistake WROVER_KIT was still uncommented. by the camera logic on the camera_pins.h page it didnt matter that i had uncommented out anything else it hit the first if statement and exited selecting the WROVER_KIT every time.

It should look like this and it flashes a lot faster than the WROVER model. for some reason i also had to reboot it twice after it flashed.

// Select camera model
//#define CAMERA_MODEL_WROVER_KIT
//#define CAMERA_MODEL_ESP_EYE
//#define CAMERA_MODEL_M5STACK_PSRAM
//#define CAMERA_MODEL_M5STACK_WIDE
#define CAMERA_MODEL_AI_THINKER