[Openocd-development] [PATCH] target: Added script for Luminary Stellaris LM3S3748 target

2010-02-03 Thread Laurentiu Cocanu
Tested with Luminary Micro LM3S3748 EVB board Signed-off-by: Laurentiu Cocanu laurentiu.coc...@zylin.com --- tcl/target/lm3s3748.cfg | 29 + 1 files changed, 29 insertions(+), 0 deletions(-) create mode 100644 tcl/target/lm3s3748.cfg diff --git a/tcl/target

[Openocd-development] [PATCH] str9x.c: take2: Removed the optimization when erasing the whole bank

2010-01-14 Thread Laurentiu Cocanu
and then erased the last one, sector #7 separately. Using the erase bank command will cause a time out error. Replacing this with the erase sector bank will provide a slower but safer and stable method to erase the flash. Signed-off-by: Laurentiu Cocanu laurentiu.coc...@zylin.com --- src/flash/nor

[Openocd-development] [PATCH]Fixed small bug inside target/wi-9c.cfg

2009-04-23 Thread Laurentiu Cocanu
Hi! A minor change. Index: src/target/target/wi-9c.cfg === --- src/target/target/wi-9c.cfg (revision 1513) +++ src/target/target/wi-9c.cfg (working copy) @@ -31,7 +31,7 @@ } set _TARGETNAME [format %s.cpu $_CHIPNAME] -jtag

[Openocd-development] [Patch]Added documentation for some commands

2008-10-22 Thread Laurentiu Cocanu
Index: openocd.texi === --- openocd.texi(revision 1086) +++ openocd.texi(working copy) @@ -479,7 +479,7 @@ @cindex altium Altium Universal JTAG cable. @end itemize [EMAIL PROTECTED] @b{parport_write_on_exit}

[Openocd-development] Added documentation for several commands in openocd.texi

2008-10-17 Thread Laurentiu Cocanu
Index: openocd.texi === --- openocd.texi(revision 1082) +++ openocd.texi(working copy) @@ -835,6 +835,13 @@ @subsection Target state handling @itemize @bullet [EMAIL PROTECTED] @b{reg} [EMAIL

[Openocd-development] [Patch] Added new section in openocd.texi

2008-10-16 Thread Laurentiu Cocanu
Hi I integrated READ_TARGET_COMMENT.txt content into openocd general documentation (outputted as openocd.pdf). Index: openocd.texi === --- openocd.texi(revision 1065) +++ openocd.texi(working copy) @@ -941,6 +941,449

Re: [Openocd-development] [Patch] Added additional error return checks

2008-10-14 Thread Laurentiu Cocanu
More error checks. On Tue, Oct 14, 2008 at 1:07 PM, Øyvind Harboe [EMAIL PROTECTED]wrote: On Tue, Oct 14, 2008 at 12:40 PM, Laurentiu Cocanu [EMAIL PROTECTED] wrote: Continued with error checks on arm*.c source files. Committed all but armv7.c that needs a bit of work still. Thanks

Re: [Openocd-development] [Patch] Added additional error return checks

2008-10-14 Thread Laurentiu Cocanu
one more patch On Tue, Oct 14, 2008 at 3:15 PM, Øyvind Harboe [EMAIL PROTECTED]wrote: On Tue, Oct 14, 2008 at 3:05 PM, Laurentiu Cocanu [EMAIL PROTECTED] wrote: More error checks. Committed. Thanks! -- Øyvind Harboe http://www.zylin.com/zy1000.html ARM7 ARM9 XScale Cortex JTAG

[Openocd-development] [Patch] Added additional error return checks

2008-10-13 Thread Laurentiu Cocanu
Hi! Added additional error checks mostly to src/target/target.c and changed some functions that performed no error checks to return void. Index: helper/time_support.h === --- helper/time_support.h (revision 1024) +++