From b7102d395caf91c088fda5aa25dcd471a3a48c9d Mon Sep 17 00:00:00 2001 From: Oleg Kalachev Date: Mon, 10 Aug 2026 02:15:30 +0300 Subject: [PATCH] Make default fqbn plain esp32 It works on d1 as well --- .github/workflows/build.yml | 4 +--- Makefile | 2 +- 2 files changed, 2 insertions(+), 4 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index a7acaf2..ba880bd 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -16,10 +16,8 @@ jobs: - uses: actions/checkout@v4 - name: Install Arduino CLI run: curl -fsSL https://raw.githubusercontent.com/arduino/arduino-cli/master/install.sh | BINDIR=/usr/local/bin sh - - name: Build firmware + - name: Build firmware for ESP32 run: make - - name: Build firmware for ESP32 Dev Module - run: make BOARD=esp32:esp32:esp32 - name: Build firmware for ESP32-C3 run: make BOARD=esp32:esp32:esp32c3 - name: Build firmware for ESP32-S3 with QSPI PSRAM diff --git a/Makefile b/Makefile index 916411d..a6f7dc7 100644 --- a/Makefile +++ b/Makefile @@ -1,4 +1,4 @@ -BOARD = esp32:esp32:d1_mini32 +BOARD = esp32:esp32:esp32 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*)) export ARDUINO_NETWORK_CONNECTION_TIMEOUT := 1h