-
Notifications
You must be signed in to change notification settings - Fork 7.7k
Description
Board
ESP32 Dev Kit C V4 from AZ-Delivery
Device Description
ESP32 Dev Kit C V4 from AZ-Delivery
Hardware Configuration
There is no special configuration.
The board info is as follows:
BN: Unknown board
VID: 0x10C4
PID: 0xEAC0
SN: 0001
I chose ESP32 Dev Module
CPU frequency: "240 MHz (WiFi/BT)"
Core debug level: "None"
Events run on: "Core 1"
PSRAM: "Disabled"
Version
v3.3.3
Type
Task
IDE Name
Arduino IDE v2.3.6
Operating System
Windows 11
Flash frequency
80 MHz
PSRAM enabled
no
Upload speed
921600
Description
I have a code of sorts like this:
void setup()
{
pinMode(RFM95_RST, OUTPUT);
digitalWrite(RFM95_RST, HIGH);
Serial.begin(115200);
delay(5000);
while (!Serial) {};
Serial.println("Arduino radio test!");
}No matter how I change the conditions on Serial.begin, I cannot see the 'setup messages' in the Arduino IDE 2.3.6 Serial Monitor.
I modified some values in the boards.txt file.
C:\Users...\AppData\Local\Arduino15\packages\esp32\hardware\esp32\3.3.3, but nothing happened.
How can I view the messages during the setup process in my Serial Monitor?
On other ESP32 boards, such as the S3, this option is available to the user.
Sincerely,
Worried Engineer
Sketch
The sketch code is written aboveDebug Message
No debug message because there is no compilation error
Other Steps to Reproduce
I have checked existing issues, online documentation and the Troubleshooting Guide
- I confirm I have checked existing issues, online documentation and Troubleshooting guide.