From da8bf4c516e75c944090cc4eff4182b878fc8d7f Mon Sep 17 00:00:00 2001 From: Tomasz Duda Date: Mon, 6 May 2024 21:39:03 +0200 Subject: [PATCH] fail pyocd for not supported bootloader --- esphome/__main__.py | 3 +++ 1 file changed, 3 insertions(+) diff --git a/esphome/__main__.py b/esphome/__main__.py index 792208b144..0478b454f0 100644 --- a/esphome/__main__.py +++ b/esphome/__main__.py @@ -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(