WORKING !!!

This commit is contained in:
feeling001@gmail.com
2026-06-08 17:03:18 +02:00
parent 155e80a537
commit 7e0ccb0bf7
2 changed files with 20 additions and 4 deletions
+10
View File
@@ -78,6 +78,16 @@ build: check-board
@echo " ── Compilation pour $(BOARD) ──────────────────────────────" @echo " ── Compilation pour $(BOARD) ──────────────────────────────"
$(PIO) run -e $(BOARD) $(PIO) run -e $(BOARD)
#
# partitions
#
partition: check-board
@echo ""
@echo " ── flash de la partition pour $(BOARD) ───────"
python3 -m esptool --chip esp32-s3 --port $(PORT) --baud 460800 write-flash 0x8000 .pio/build/$(BOARD)/partitions.bin
# ───────────────────────────────────────────────────────────── # ─────────────────────────────────────────────────────────────
# flash compilation + upload du firmware # flash compilation + upload du firmware
# ───────────────────────────────────────────────────────────── # ─────────────────────────────────────────────────────────────
+7 -1
View File
@@ -60,8 +60,14 @@ build_flags =
[env:esp32s3_n16r8v] [env:esp32s3_n16r8v]
board = esp32-s3-devkitc-1 board = esp32-s3-devkitc-1
board_build.partitions = default_16MB.csv board_build.partitions = default_16MB.csv
board_upload.flash_size = 16MB board_upload.flash_size = 16MB
board_build.arduino.memory_type = qio_opi ; OPI PSRAM board_build.f_flash = 80000000L ; Force la flash à 80MHz
board_upload.flash_mode = dio
board_build.arduino.memory_type = dio_opi
board_build.flash_mode = dio
upload_speed = 921600 upload_speed = 921600
monitor_speed = 115200 monitor_speed = 115200
build_flags = build_flags =