From a5dbd2c82907a75a79f78d40ee0a8a5a92468490 Mon Sep 17 00:00:00 2001 From: Oleg Kalachev Date: Sat, 30 May 2026 16:48:12 +0300 Subject: [PATCH] Add erase command to makefile --- Makefile | 3 +++ 1 file changed, 3 insertions(+) diff --git a/Makefile b/Makefile index 68771b5..cebf864 100644 --- a/Makefile +++ b/Makefile @@ -7,6 +7,9 @@ build: .dependencies upload: build arduino-cli upload --fqbn $(BOARD) -p "$(PORT)" flix +erase: + arduino-cli burn-bootloader --fqbn $(BOARD) -p "$(PORT)" -P esptool + monitor: arduino-cli monitor -p "$(PORT)" -c baudrate=115200