From dfe8f3a4417b03253977ae1be23f3c8196d35b21 Mon Sep 17 00:00:00 2001 From: Spencer Oliver Date: Wed, 29 Feb 2012 15:20:24 +0000 Subject: [PATCH] stlink: fix incorrect pc console output MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit target_call_event_callbacks needs to be called after debug entry otherwise we will get a console pc mismatch. Change-Id: I278137736d5e85ca9662c306f6ac81336d8eb6cf Signed-off-by: Spencer Oliver Reviewed-on: http://openocd.zylin.com/499 Tested-by: jenkins Reviewed-by: Øyvind Harboe --- src/target/stm32_stlink.c | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/src/target/stm32_stlink.c b/src/target/stm32_stlink.c index 32896cc3..171cc83c 100644 --- a/src/target/stm32_stlink.c +++ b/src/target/stm32_stlink.c @@ -605,10 +605,8 @@ static int stm32_stlink_step(struct target *target, int current, if (breakpoint) cortex_m3_set_breakpoint(target, breakpoint); - target->debug_reason = DBG_REASON_SINGLESTEP; - target_call_event_callbacks(target, TARGET_EVENT_HALTED); - stlink_debug_entry(target); + target_call_event_callbacks(target, TARGET_EVENT_HALTED); LOG_INFO("halted: PC: 0x%x", buf_get_u32(armv7m->arm.pc->value, 0, 32)); -- 2.39.5