[Openocd-development] New patch to review for openocd: afd5a73 * Add flash waitstate support for Atmel SAM3 chips. * Set default waitstates to 6, to workaround a silicon bug in the SAM3 family

2011-10-27 Thread gerrit
This is an automated email from Gerrit. Attila Kinali (att...@kinali.ch) just uploaded a new patch set to Gerrit, which you can find at http://openocd.zylin.com/128 -- gerrit commit afd5a73681eec417ded58a22fbe12336acdb0563 Author: Attila Kinali att...@kinali.ch Date: Thu Oct 27 12:14:55 2011

Re: [Openocd-development] git gui

2011-10-27 Thread Luca Ottaviano
On 26/10/2011 01:52, jim norris wrote: For those using a git gui, what are you using? 'gitg' on Linux. Having a GUI for hunk selection and commit is by far fastest then jumping trough various shells when writing a meaningful changelog message for the changes you are committing. Otherwise,

Re: [Openocd-development] git gui

2011-10-27 Thread Pete Batard
Apologies to anyone for annoying this list again with what are mostly discussions about the libusb dysfunctionality. If you aren't interested in finding why projects become dysfunctional, and why people will take palliative action then, please ignore. On 2011.10.27 00:53, Peter Stuge wrote:

Re: [Openocd-development] status of cortex-m0

2011-10-27 Thread Christopher Harvey
On Thu, 27 Oct 2011 08:45:57 -0500, Christopher Harvey wrote: Xiaofan Chen, aren't you a versaloon developer? Your name is on the versaloon paypal order page. My bad. The Versaloon guy is Qian Xiaochen, not Xiaofan Chen ___ Openocd-development

Re: [Openocd-development] status of cortex-m0

2011-10-27 Thread Christopher Harvey
On Thu, 27 Oct 2011 13:08:57 +0800, Xiaofan Chen wrote: On Thu, Oct 27, 2011 at 11:24 AM, Christopher Harvey ch...@basementcode.com wrote: I read a thread about somebody who apparently got cortex m0 cores working with OpenOCD. (based on the m3 code). Did that patch ever get posted somewhere?

Re: [Openocd-development] git gui

2011-10-27 Thread Marti Bolivar
On 10/27/2011 06:43 AM, Luca Ottaviano wrote: Having a GUI for hunk selection and commit is by far fastest then jumping trough various shells when writing a meaningful changelog message for the changes you are committing. +1. I use magit from within emacs for this (among other things). The

[Openocd-development] New patch to review for openocd: c5e0a7c clang: fix warning about missing check for return value

2011-10-27 Thread gerrit
This is an automated email from Gerrit. ?yvind Harboe (oyvindhar...@gmail.com) just uploaded a new patch set to Gerrit, which you can find at http://openocd.zylin.com/129 -- gerrit commit c5e0a7c0a539e0fcacd2fd1333dda5adfb5e60cf Author: Øyvind Harboe oyvind.har...@zylin.com Date: Thu Oct 27

[Openocd-development] clang warnings

2011-10-27 Thread Øyvind Harboe
Hi, Spencer has gotten clang up and running again on the server! :-) Please take a moment to fix a warning or two that you can find in the latest warning list for clang builds. You'll notice that there is a nice graph that we can use to track our progress in terms of warnings. When reviewing,

Re: [Openocd-development] clang warnings

2011-10-27 Thread Spencer Oliver
On 27/10/2011 18:30, Øyvind Harboe wrote: Hi, Spencer has gotten clang up and running again on the server! :-) Please take a moment to fix a warning or two that you can find in the latest warning list for clang builds. You'll notice that there is a nice graph that we can use to track our

[Openocd-development] New patch to review for openocd: e043913 bugfixes: numerous bugs in error propagation found by clang

2011-10-27 Thread gerrit
This is an automated email from Gerrit. ?yvind Harboe (oyvindhar...@gmail.com) just uploaded a new patch set to Gerrit, which you can find at http://openocd.zylin.com/130 -- gerrit commit e0439139e9f1cc6d811c6f9bce49a2e36f01163e Author: Øyvind Harboe oyvind.har...@zylin.com Date: Thu Oct 27

Re: [Openocd-development] New patch to review for openocd: e043913 bugfixes: numerous bugs in error propagation found by clang

2011-10-27 Thread Peter Stuge
ger...@openocd.zylin.com wrote: -DumpTargets: +DumpTargets:; Hm? //Peter ___ Openocd-development mailing list Openocd-development@lists.berlios.de https://lists.berlios.de/mailman/listinfo/openocd-development

Re: [Openocd-development] New patch to review for openocd: e043913 bugfixes: numerous bugs in error propagation found by clang

2011-10-27 Thread Øyvind Harboe
2011/10/28 Peter Stuge pe...@stuge.se: ger...@openocd.zylin.com wrote: -DumpTargets: +DumpTargets:; Hm? Syntactically a declaration can't follow a label, so add an empty statement. -- Øyvind Harboe - Can Zylin Consulting help on your project? US toll free 1-866-980-3434

Re: [Openocd-development] New patch to review for openocd: e043913 bugfixes: numerous bugs in error propagation found by clang

2011-10-27 Thread Peter Stuge
Øyvind Harboe wrote: 2011/10/28 Peter Stuge pe...@stuge.se: ger...@openocd.zylin.com wrote: -DumpTargets: +DumpTargets:; Hm? Syntactically a declaration can't follow a label, so add an empty statement. I don't like the change so much. It ends up declaring the exact same variable

Re: [Openocd-development] New patch to review for openocd: e043913 bugfixes: numerous bugs in error propagation found by clang

2011-10-27 Thread Øyvind Harboe
On Fri, Oct 28, 2011 at 12:23 AM, Peter Stuge pe...@stuge.se wrote: Øyvind Harboe wrote: 2011/10/28 Peter Stuge pe...@stuge.se: ger...@openocd.zylin.com wrote: -DumpTargets: +DumpTargets:; Hm? Syntactically a declaration can't follow a label, so add an empty statement. I don't

Re: [Openocd-development] New patch to review for openocd: e043913 bugfixes: numerous bugs in error propagation found by clang

2011-10-27 Thread Peter Stuge
Øyvind Harboe wrote: I don't like the change so much. It ends up declaring the exact same variable twice, and other odd noise, to silence a warning. Is there no better way? Reusing the 'target' variable name here is bad. .. The code is now more easily re-factored as multiple functions

Re: [Openocd-development] New patch to review for openocd: e043913 bugfixes: numerous bugs in error propagation found by clang

2011-10-27 Thread Øyvind Harboe
On Fri, Oct 28, 2011 at 12:59 AM, Peter Stuge pe...@stuge.se wrote: Øyvind Harboe wrote: I don't like the change so much. It ends up declaring the exact same variable twice, and other odd noise, to silence a warning. Is there no better way? Reusing the 'target' variable name here is bad.

[Openocd-development] New patch to review for openocd: 6d22305 bugfixes: tinker a bit with the targets command

2011-10-27 Thread gerrit
This is an automated email from Gerrit. ?yvind Harboe (oyvindhar...@gmail.com) just uploaded a new patch set to Gerrit, which you can find at http://openocd.zylin.com/131 -- gerrit commit 6d223053e3b290678414c021b9f9da1f669d8de0 Author: Øyvind Harboe oyvind.har...@zylin.com Date: Thu Oct 27