From 488ceb3004ce90a1b068f938ff30c394f271d8d9 Mon Sep 17 00:00:00 2001 From: Oleg Kalachev Date: Thu, 28 May 2026 19:25:29 +0300 Subject: [PATCH] Set the debug level to error by default to see the errors --- Makefile | 2 +- docs/usage.md | 9 ++++++++- 2 files changed, 9 insertions(+), 2 deletions(-) diff --git a/Makefile b/Makefile index de670c4..68771b5 100644 --- a/Makefile +++ b/Makefile @@ -1,4 +1,4 @@ -BOARD = esp32:esp32:d1_mini32 +BOARD = esp32:esp32:d1_mini32:DebugLevel=error PORT := $(strip $(wildcard /dev/serial/by-id/usb-Silicon_Labs_CP21* /dev/serial/by-id/usb-1a86_USB_Single_Serial_* /dev/cu.usbserial-* /dev/cu.usbmodem*)) build: .dependencies diff --git a/docs/usage.md b/docs/usage.md index 16123c8..6091668 100644 --- a/docs/usage.md +++ b/docs/usage.md @@ -26,7 +26,8 @@ You can build and upload the firmware using either **Arduino IDE** (easier for b * `MAVLink`, version 2.0.25. 5. Open the `flix/flix.ino` sketch from downloaded firmware sources in Arduino IDE. 6. Connect your ESP32 board to the computer and choose correct board type in Arduino IDE (*WEMOS D1 MINI ESP32* for ESP32 Mini) and the port. -7. [Build and upload](https://docs.arduino.cc/software/ide-v2/tutorials/getting-started/ide-v2-uploading-a-sketch) the firmware using Arduino IDE. +7. Set *Tools* ⇒ *Core Debug Level* to *Error* to see the errors in the serial console. Set *Tools* ⇒ *USB CDC on Boot* to *Enabled* for ESP32-S3/ESP32-C3 boards. +8. [Build and upload](https://docs.arduino.cc/software/ide-v2/tutorials/getting-started/ide-v2-uploading-a-sketch) the firmware using Arduino IDE. ### Command line (Windows, Linux, macOS) @@ -57,6 +58,12 @@ You can build and upload the firmware using either **Arduino IDE** (easier for b make upload monitor ``` + For ESP32-S3/ESP32-C3 boards, set the appropriate [FQBN](https://arduino.github.io/arduino-cli/1.5/FAQ/#whats-the-fqbn-string) using `BOARD` parameter: + + ```bash + make BOARD=esp32:esp32:esp32s3:DebugLevel=error,FlashSize=4M,CDCOnBoot=cdc upload + ``` + See other available Make commands in [Makefile](../Makefile). > [!TIP]