1
0
mirror of https://github.com/esphome/esphome.git synced 2025-04-05 18:30:28 +01:00

fail pyocd for not supported bootloader

This commit is contained in:
Tomasz Duda 2024-05-06 21:39:03 +02:00
parent e029840067
commit da8bf4c516

View File

@ -115,6 +115,8 @@ def choose_upload_log_host(
if default == "SERIAL":
return choose_prompt(options, purpose=purpose)
if default == "PYOCD":
if not mcuboot:
raise EsphomeError("PYOCD for adafruit is not implemented")
options = [("pyocd", "PYOCD")]
return choose_prompt(options, purpose=purpose)
if mcuboot:
@ -392,6 +394,7 @@ def upload_program(config, args, host):
raise EsphomeError(f"Unknown target platform: {CORE.target_platform}")
if host == "PYOCD":
print(CORE)
return upload_using_platformio(config, host, ["-t", "flash_pyocd"])
if host.startswith("mcumgr"):
firmware = os.path.abspath(