Not sure I understand. I'm not doing anything with GPIO18/19. At least not explicitly in my code.Potentially you're trying to reconfigure GPIO18/19. Those are the pins the USB connection runs on, so if you reconfigure those, you can't put the chip into download mode via USB anymore.
Search found 24 matches
- Tue Sep 09, 2025 8:41 pm
- Forum: Hardware
- Topic: Why do I keep popping my XIOA ESP32-C3's?
- Replies: 6
- Views: 2087
Re: Why do I keep popping my XIOA ESP32-C3's?
- Tue Sep 09, 2025 8:39 pm
- Forum: General Discussion
- Topic: esp32-c3 keeps rebooting before even going into app_main()
- Replies: 5
- Views: 1103
Re: esp32-c3 keeps rebooting before even going into app_main()
Your board’s chip has 4MB flash.
The app was built with a 2MB flash setting (--flash_size 2MB in your esptool line).
That means the image header doesn’t match the actual hardware, and the IDF chooses the smaller size (2MB), which can cause mis-addressing and watchdog resets.
Reconfigure the ...
- Sun Sep 07, 2025 9:42 pm
- Forum: General Discussion
- Topic: esp32-c3 keeps rebooting before even going into app_main()
- Replies: 5
- Views: 1103
Re: esp32-c3 keeps rebooting before even going into app_main()
Nevermind, I didn't use the set-target command:
Code: Select all
idf.py set-target ESP32-C3- Sun Sep 07, 2025 9:16 pm
- Forum: General Discussion
- Topic: esp32-c3 keeps rebooting before even going into app_main()
- Replies: 5
- Views: 1103
Re: esp32-c3 keeps rebooting before even going into app_main()
at line 147:
I went into the menuconfig and disabled the watchdog timer
Code: Select all
W (41) boot.esp32c3: PRO CPU has been reset by WDT.- Sun Sep 07, 2025 9:15 pm
- Forum: General Discussion
- Topic: esp32-c3 keeps rebooting before even going into app_main()
- Replies: 5
- Views: 1103
esp32-c3 keeps rebooting before even going into app_main()
I'm try to flash the example code for protocols/sockets/tcp_client and it keeps rebooting with the following from the monitor:
[803/804] Generating binary image from built executable
esptool.py v4.10.dev2
Creating esp32c3 image...
Merged 1 ELF section
Successfully created esp32c3 image.
Generated ...
[803/804] Generating binary image from built executable
esptool.py v4.10.dev2
Creating esp32c3 image...
Merged 1 ELF section
Successfully created esp32c3 image.
Generated ...
- Sun Sep 07, 2025 3:55 pm
- Forum: General Discussion
- Topic: trying to install ESP8266_RTOS_SDK (problems with virtualenv)
- Replies: 1
- Views: 898
Re: trying to install ESP8266_RTOS_SDK (problems with virtualenv)
Here's what I did to get it to work:
and run ". ./export.sh" in ESP8266_RTOS_SDK directory
Code: Select all
python3 -m venv .venv
source .venv/bin/activate
python3 -m pip install -r ./requirements.txt
make sure IDF_PATH points to ESP8266_RTOS_SDK
export IDF_PATH=/home/dan/dev/esp/ESP8266_RTOS_SDK
- Sun Sep 07, 2025 3:53 pm
- Forum: Hardware
- Topic: Why do I keep popping my XIOA ESP32-C3's?
- Replies: 6
- Views: 2087
Re: Why do I keep popping my XIOA ESP32-C3's?
It seems you have to 1) hold the boot button down, 2) press and release the reset button, 3) release the boot button.
Funny thing is, I never had to do that before. Something must have changed. I have several others I could try.
Funny thing is, I never had to do that before. Something must have changed. I have several others I could try.
- Fri Sep 05, 2025 7:26 pm
- Forum: General Discussion
- Topic: trying to install ESP8266_RTOS_SDK (problems with virtualenv)
- Replies: 1
- Views: 898
trying to install ESP8266_RTOS_SDK (problems with virtualenv)
while installing the sdk, I ran python -m pip install --user -r requirements.txt and got some error (I forget what it is now) so I found this link: https://esp32.com/viewtopic.php?t=12481 and followed the instructions on the 2nd post by ESP_igrr:
3. Delete C:\\ESP\\.espressif\\python_env\\idf3.3 ...
3. Delete C:\\ESP\\.espressif\\python_env\\idf3.3 ...
- Thu Sep 04, 2025 4:29 pm
- Forum: Hardware
- Topic: Why do I keep popping my XIOA ESP32-C3's?
- Replies: 6
- Views: 2087
Re: Why do I keep popping my XIOA ESP32-C3's?
Actually, it's supposed to be /dev/ttyACM0
- Thu Sep 04, 2025 4:27 pm
- Forum: Hardware
- Topic: Why do I keep popping my XIOA ESP32-C3's?
- Replies: 6
- Views: 2087
Why do I keep popping my XIOA ESP32-C3's?
I've popped 3 just today so far. Here's my flash script:
idf.py -p /dev/ttyAMC0 flash
I'm trying to use the espnow example: esp-idf/examples/wifi/espnow_basic_example-master/espnow_basic_slave
All I know is that after I flash it, I try to run the monitor program or get onto the serial port and ...
idf.py -p /dev/ttyAMC0 flash
I'm trying to use the espnow example: esp-idf/examples/wifi/espnow_basic_example-master/espnow_basic_slave
All I know is that after I flash it, I try to run the monitor program or get onto the serial port and ...