We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d06e5d3 commit abf56caCopy full SHA for abf56ca
utils/arduino-cli-compile.py
@@ -54,8 +54,8 @@
54
55
for board in boards:
56
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}"
+ os.system(f"arduino-cli cache clean")
+ command = f"arduino-cli compile --fqbn deauther:esp8266:generic --build-properties \"build.extra_flags=-DESP8266 -D{board}\" --output-dir {folder}"
59
process = subprocess.Popen(command, shell=True, stdout=subprocess.PIPE)
60
process.wait()
61
os.system(f"mv {folder}/esp8266_deauther.ino.bin {folder}/esp8266_deauther_{version}_{board}.bin")
0 commit comments