mirror of
https://github.com/esphome/esphome.git
synced 2025-04-06 10:50:28 +01:00
fail pyocd for not supported bootloader
This commit is contained in:
parent
e029840067
commit
da8bf4c516
@ -115,6 +115,8 @@ def choose_upload_log_host(
|
|||||||
if default == "SERIAL":
|
if default == "SERIAL":
|
||||||
return choose_prompt(options, purpose=purpose)
|
return choose_prompt(options, purpose=purpose)
|
||||||
if default == "PYOCD":
|
if default == "PYOCD":
|
||||||
|
if not mcuboot:
|
||||||
|
raise EsphomeError("PYOCD for adafruit is not implemented")
|
||||||
options = [("pyocd", "PYOCD")]
|
options = [("pyocd", "PYOCD")]
|
||||||
return choose_prompt(options, purpose=purpose)
|
return choose_prompt(options, purpose=purpose)
|
||||||
if mcuboot:
|
if mcuboot:
|
||||||
@ -392,6 +394,7 @@ def upload_program(config, args, host):
|
|||||||
raise EsphomeError(f"Unknown target platform: {CORE.target_platform}")
|
raise EsphomeError(f"Unknown target platform: {CORE.target_platform}")
|
||||||
|
|
||||||
if host == "PYOCD":
|
if host == "PYOCD":
|
||||||
|
print(CORE)
|
||||||
return upload_using_platformio(config, host, ["-t", "flash_pyocd"])
|
return upload_using_platformio(config, host, ["-t", "flash_pyocd"])
|
||||||
if host.startswith("mcumgr"):
|
if host.startswith("mcumgr"):
|
||||||
firmware = os.path.abspath(
|
firmware = os.path.abspath(
|
||||||
|
Loading…
x
Reference in New Issue
Block a user