From b45abf67a5a03ee6fb4415c85e04991b1df51624 Mon Sep 17 00:00:00 2001 From: Ivan Kravets Date: Mon, 4 Nov 2019 15:36:23 +0200 Subject: [PATCH] Fix broken debug configuration --- examples | 2 +- platformio/commands/debug/initcfgs.py | 12 ++++++------ 2 files changed, 7 insertions(+), 7 deletions(-) diff --git a/examples b/examples index bf351dbc..9070288c 160000 --- a/examples +++ b/examples @@ -1 +1 @@ -Subproject commit bf351dbce107e39850bbc95385a6986b3088c302 +Subproject commit 9070288cff31e353ee307b1b108662ff8c06a9b2 diff --git a/platformio/commands/debug/initcfgs.py b/platformio/commands/debug/initcfgs.py index 5596ffa3..fbd207f2 100644 --- a/platformio/commands/debug/initcfgs.py +++ b/platformio/commands/debug/initcfgs.py @@ -23,15 +23,15 @@ end target extended-remote $DEBUG_PORT monitor init -pio_reset_halt_target $LOAD_CMDS +pio_reset_halt_target $INIT_BREAK """ GDB_STUTIL_INIT_CONFIG = """ define pio_reset_halt_target - monitor halt monitor reset + monitor halt end define pio_reset_target @@ -39,8 +39,8 @@ define pio_reset_target end target extended-remote $DEBUG_PORT -pio_reset_halt_target $LOAD_CMDS +pio_reset_halt_target $INIT_BREAK """ @@ -57,8 +57,8 @@ end target extended-remote $DEBUG_PORT monitor clrbp monitor speed auto -pio_reset_halt_target $LOAD_CMDS +pio_reset_halt_target $INIT_BREAK """ @@ -102,8 +102,8 @@ end target extended-remote $DEBUG_PORT monitor erase -pio_reset_halt_target $LOAD_CMDS +pio_reset_halt_target $INIT_BREAK """ @@ -117,7 +117,7 @@ define pio_reset_target end target extended-remote $DEBUG_PORT -pio_reset_halt_target $LOAD_CMDS +pio_reset_halt_target $INIT_BREAK """