Skip to content

Commit abf56ca

Browse files
author
Spacehuhn
committed
Fixed compiler script
1 parent d06e5d3 commit abf56ca

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

utils/arduino-cli-compile.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -54,8 +54,8 @@
5454

5555
for board in boards:
5656
print(f"Compiling {board}...", flush=True)
57-
os.system(f"arduino-cli cache clean");
58-
command = f"arduino-cli compile --fqbn deauther:esp8266:d1_mini --build-properties \"build.extra_flags=-DESP8266 -D{board}\" --output-dir {folder}"
57+
os.system(f"arduino-cli cache clean")
58+
command = f"arduino-cli compile --fqbn deauther:esp8266:generic --build-properties \"build.extra_flags=-DESP8266 -D{board}\" --output-dir {folder}"
5959
process = subprocess.Popen(command, shell=True, stdout=subprocess.PIPE)
6060
process.wait()
6161
os.system(f"mv {folder}/esp8266_deauther.ino.bin {folder}/esp8266_deauther_{version}_{board}.bin")

0 commit comments

Comments
 (0)