Closed
Description
Board
ESP32C3
Device Description
AirM2M_CORE_ESP32C3
Hardware Configuration
esp32-c3-devkitm-1
Version
v2.0.3
IDE Name
Arduino IDE
Operating System
macOS 12.2.1
Flash frequency
40MHz & 80MHz
PSRAM enabled
no
Upload speed
921600
Description
Infinite restart always occurs when testing any simple example
I have made the following settings, but the problem still exists:
USB CDC On Boot: Enabled
Flash Mode: DIO
Sketch
#include <Arduino.h>
void setup()
{
Serial.begin(115200);
Serial.println("test msg");
// put your setup code here, to run once:
pinMode(13, OUTPUT);
pinMode(12, OUTPUT);
digitalWrite(12, LOW);
}
void loop()
{
// put your main code here, to run repeatedly:
digitalWrite(13, digitalRead(13) == HIGH ? LOW : HIGH);
digitalWrite(12, digitalRead(12) == HIGH ? LOW : HIGH);
Serial.println("test msg");
delay(1000);
}
Debug Message
ESP-ROM:esp32c3-api1-20210207
Build:Feb 7 2021
rst:0x3 (RTC_SW_SYS_RST),boot:0xc (SPI_FAST_FLASH_BOOT)
Saved PC:0x40381782
SPIWP:0xee
mode:DIO, clock div:2
load:0x3fcd6100,len:0x38c
load:0x403ce000,len:0x6a8
load:0x403d0000,len:0x2358
SHA-256 comparison failed:
Calculated: 4bd624aff3257f126bd68f521ac53163cd7fe48cae8d3a77a847ef36aa76ad41
Expected: 2dd871cd993fccdf87b5ef3c78d949bd29ad8f4d97ecb130ff4297267fa0ddbe
Attempting to boot anyway...
entry 0x403ce000
ESP-ROM:esp32c3-api1-20210207
Build:Feb 7 2021
rst:0x3 (RTC_SW_SYS_RST),boot:0xc (SPI_FAST_FLASH_BOOT)
Saved PC:0x40381782
SPIWP:0xee
mode:DIO, clock div:2
load:0x3fcd6100,len:0x38c
load:0x403ce000,len:0x6a8
load:0x403d0000,len:0x2358
SHA-256 comparison failed:
Calculated: 4bd624aff3257f126bd68f521ac53163cd7fe48cae8d3a77a847ef36aa76ad41
Expected: 2dd871cd993fccdf87b5ef3c78d949bd29ad8f4d97ecb130ff4297267fa0ddbe
Other Steps to Reproduce
No response
I have checked existing issues, online documentation and the Troubleshooting Guide
- I confirm I have checked existing issues, online documentation and Troubleshooting guide.