On Tue, Sep 21, 2010 at 6:27 PM, Øyvind Harboe <[email protected]> wrote: > Merged. > > Thanks!
Sorry, my mistake! I have rebased the patch on a wrong version, and now we get run-time error. Please apply the patch in attachment to fix the error. Best Regards, Antonio Borneo
From 71fec47d73db31a85a8f7b1c074f70fc0e05e50b Mon Sep 17 00:00:00 2001 From: Antonio Borneo <[email protected]> Date: Tue, 28 Sep 2010 16:37:19 +0800 Subject: [PATCH] TCL scripts: fix ocd_mem2array/mem2array In previous patch, I have introduced again the symbol "ocd_mem2array", now replaced by "mem2array". Fix the error. Signed-off-by: Antonio Borneo <[email protected]> --- tcl/mem_helper.tcl | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/tcl/mem_helper.tcl b/tcl/mem_helper.tcl index d811490..a3d92cb 100644 --- a/tcl/mem_helper.tcl +++ b/tcl/mem_helper.tcl @@ -3,7 +3,7 @@ # mrw: "memory read word", returns value of $reg proc mrw {reg} { set value "" - ocd_mem2array value 32 $reg 1 + mem2array value 32 $reg 1 return $value(0) } -- 1.5.2.2
_______________________________________________ Openocd-development mailing list [email protected] https://lists.berlios.de/mailman/listinfo/openocd-development
