运用Arduino IDE烧录esp32时,遇到的端口问题。在设备管理器里面下载好了com与lpt,烧录时按住了boot键。错误如下:
A fatal error occurred: Could not open COM6, the port doesn't exist
Failed uploading: uploading error: exit status 2

运用Arduino IDE烧录esp32时,遇到的端口问题。在设备管理器里面下载好了com与lpt,烧录时按住了boot键。错误如下:
A fatal error occurred: Could not open COM6, the port doesn't exist
Failed uploading: uploading error: exit status 2

关注让【道友老李】来帮你解答,本回答参考gpt编写,并整理提供,如果还有疑问可以点击头像关注私信或评论(小黑屋了,无法评论,请私信)。
如果答案让您满意,请采纳、关注,非常感谢!当在Arduino IDE中烧录esp32遇到端口问题时,有几个可能的解决方案:
void setup() {
Serial.begin(115200);
}
void loop() {
Serial.println("Hello, World!");
delay(1000);
}