mirror of https://github.com/arendst/Tasmota.git
fix solo1 safemode
This commit is contained in:
parent
91e02fb9f8
commit
3c13fb1b8d
|
@ -36,8 +36,13 @@ FRAMEWORK_DIR = platform.get_package_dir("framework-arduinoespressif32")
|
|||
variants_dir = join(FRAMEWORK_DIR, "variants", "tasmota")
|
||||
|
||||
def esp32_fetch_safemode_bin(chip):
|
||||
if "solo1" in env.subst("$BUILD_DIR"):
|
||||
safemode_fw_url = "https://github.com/arendst/Tasmota-firmware/raw/main/firmware/tasmota32/tasmota32solo1-safemode.bin"
|
||||
safemode_fw_name = join(variants_dir,"tasmota32solo1-safemode.bin")
|
||||
else:
|
||||
safemode_fw_url = "https://github.com/arendst/Tasmota-firmware/raw/main/firmware/tasmota32/tasmota" + chip[3:] + "-safemode.bin"
|
||||
safemode_fw_name = join(variants_dir,"tasmota" + chip[3:] + "-safemode.bin")
|
||||
|
||||
if(exists(safemode_fw_name)):
|
||||
print("Safemode binary already in place.")
|
||||
return
|
||||
|
|
Loading…
Reference in New Issue