Closed
Description
Board
ESP32
Device Description
ESP32 Dev Modeule
Hardware Configuration
Haven't connected the development board yet, just compiling the code
Version
v2.0.11
IDE Name
Arduino IDE
Operating System
windows11
Flash frequency
80Mhz
PSRAM enabled
no
Upload speed
921600
Description
I just finished building the ESP32 development environment on ArduinoIDE 2.21, I have selected the development board as ESP32 Dev Module, and used the basic example "blink" to compile and test. Then the IDE reports an error:UnicodeWarning: Unicode equal comparison failed to convert both arguments to Unicode - interpreting them as being unequal.
And there was an error during debugging: "debug.cfg not found in scripts"
Sketch
void setup() {
pinMode(5, OUTPUT);
}
void loop() {
digitalWrite(5, HIGH);
delay(1000);
digitalWrite(5, LOW);
delay(1000);
}
Debug Message
the IDE reports an error:UnicodeWarning: Unicode equal comparison failed to convert both arguments to Unicode - interpreting them as being unequal.
and there was an error during debugging: "debug.cfg" not found in scripts.
Other Steps to Reproduce
This problem has been bothering me for two weeks now and I'm very anxious about it, so I'm hoping the big boys will help me!
I have checked existing issues, online documentation and the Troubleshooting Guide
- I confirm I have checked existing issues, online documentation and Troubleshooting guide.