Re: [Openocd-development] Cross Platform Debugger

2009-12-16 Thread René Doss
Hi, you should also have a look at codeblocks. This IDE look nice and useful. I had not used as cross development/debugging tool, but I should be simple possible. http://www.codeblocks.org/ Rene Am 13.12.2009 22:12, schrieb Carsten Breuer: > Hi Michael, hi all > > >> There is setedit that us

Re: [Openocd-development] Cross Platform Debugger

2009-12-15 Thread Mathias K.
Hello, you can pass it to gdb with the -x start option. Put your stuff into e.g. gdb.cfg and start gdb with gdb -x gdb.cfg Regards, Mathias Am 15.12.2009 16:51, schrieb Alain Mouette: > Can anyone help me with this? > > To make single-step work better with IRQs and FreeRTOS in Eclipse, it

Re: [Openocd-development] Cross Platform Debugger

2009-12-15 Thread Alain Mouette
Can anyone help me with this? To make single-step work better with IRQs and FreeRTOS in Eclipse, it seems that I need to send this do GDB: define hook-step mon cortex_m3 maskisr on end define hookpost-step mon cortex_m3 maskisr off end The big question is: how/where do I put that? I supose that

Re: [Openocd-development] Cross Platform Debugger

2009-12-14 Thread Alain Mouette
David Brownell escreveu: > On Monday 14 December 2009, Alain Mouette wrote: >> I tried debugging with Eclipde+Gdb+OpenOCD on a Cortex-M3, and it works >> just fine for the start-up code, but as soon as FreeRTOS (preemptive) >> and Interrupts are running, it is not much usefull anymore... Is ther

Re: [Openocd-development] Cross Platform Debugger

2009-12-14 Thread David Brownell
On Monday 14 December 2009, Alain Mouette wrote: > I tried debugging with Eclipde+Gdb+OpenOCD on a Cortex-M3, and it works > just fine for the start-up code, but as soon as FreeRTOS (preemptive) > and Interrupts are running, it is not much usefull anymore... Is there > any way to single-step in

Re: [Openocd-development] Cross Platform Debugger

2009-12-14 Thread Øyvind Harboe
On Mon, Dec 14, 2009 at 4:40 PM, Alain Mouette wrote: > > Michel Catudal escreveu: >> Carsten Breuer a écrit : >>> >>> is there any other GDB then insight or the EclipsePlugin under windows? >> >> Insight and Eclipse are just applications using gdb. >> >> You could write your own if you dislike th

Re: [Openocd-development] Cross Platform Debugger

2009-12-14 Thread Alain Mouette
Michel Catudal escreveu: > Carsten Breuer a écrit : >> >> is there any other GDB then insight or the EclipsePlugin under windows? > > Insight and Eclipse are just applications using gdb. > > You could write your own if you dislike those. > Aside from that there are commercial ones that don't use

Re: [Openocd-development] Cross Platform Debugger

2009-12-14 Thread David Brownell
On Monday 14 December 2009, Øyvind Harboe wrote: > >> http://lists.berlios.de/pipermail/openocd-development/2009-October/011507.html > > > > Just now.  I'm not clear what a "mask" would be though ... > > as in, what's different from the current notion of masks? > > That's fairly specific to the ARM

Re: [Openocd-development] Cross Platform Debugger

2009-12-14 Thread Øyvind Harboe
On Mon, Dec 14, 2009 at 9:29 AM, David Brownell wrote: > On Sunday 13 December 2009, Ųyvind Harboe wrote: >> > Recent ARMs don't share the "just two breakpoint/watchpoint units" >> > restriction of ARM7/ARM9 EmbeddedICE. >> > >> > Example, Cortex A8 and ARM11 have 6 breakpoints, 2 watchpoints. >>

Re: [Openocd-development] Cross Platform Debugger

2009-12-14 Thread David Brownell
On Sunday 13 December 2009, Øyvind Harboe wrote: > > Recent ARMs don't share the "just two breakpoint/watchpoint units" > > restriction of ARM7/ARM9 EmbeddedICE. > > > > Example, Cortex A8 and ARM11 have 6 breakpoints, 2 watchpoints. > > Cortex M3 has 6 breakpoints (flash only), 4 watchpoints. > >

Re: [Openocd-development] Cross Platform Debugger

2009-12-13 Thread Øyvind Harboe
On Mon, Dec 14, 2009 at 5:44 AM, David Brownell wrote: > On Sunday 13 December 2009, Michel Catudal wrote: >> I think that once OpenOCD is optimized it should work just as nice on >> the ARM (except for the lack of breakpoints) > > Recent ARMs don't share the "just two breakpoint/watchpoint units"

Re: [Openocd-development] Cross Platform Debugger

2009-12-13 Thread David Brownell
On Sunday 13 December 2009, Michel Catudal wrote: > I think that once OpenOCD is optimized it should work just as nice on > the ARM (except for the lack of breakpoints) Recent ARMs don't share the "just two breakpoint/watchpoint units" restriction of ARM7/ARM9 EmbeddedICE. Example, Cortex A8 and

Re: [Openocd-development] Cross Platform Debugger

2009-12-13 Thread Michel Catudal
Carsten Breuer a écrit : > Debugging was once cool with real emulators, with jtag, bdm or whatever, > it always sucks a bit. > > > Best Regards, > > > > Carsten > > I dislike the emulators. At work I have some projects with a Fujitsu processor and when I debug I need the $15k emulator to connec

Re: [Openocd-development] Cross Platform Debugger

2009-12-13 Thread Carsten Breuer
Hi Michael, hi all > There is setedit that uses gdb. I haven't tried the one on windows Cool :-). Looks like Borland C++ 3.1, that i have used some decades ago with DOS 5.0 :-))). Since i use midnight commander a lot, this is really an option :-). >> kdbg would be nicer. insight sucks. If someon

Re: [Openocd-development] Cross Platform Debugger

2009-12-12 Thread Michel Catudal
Carsten Breuer a écrit : Hi Michael, is there any other GDB then insight or the EclipsePlugin under windows? command line gdb Not really ;-) There is setedit that uses gdb. I haven't tried the one on windows but it works nicely on Mandriva an

Re: [Openocd-development] Cross Platform Debugger

2009-12-12 Thread Carsten Breuer
Hi Michael, >> is there any other GDB then insight or the EclipsePlugin under >> windows? > command line gdb Not really ;-) > Insight and Eclipse are just applications using gdb. > > You could write your own if you dislike those. Aside from that there Yep, that's perhaps the way to go. I have t

Re: [Openocd-development] Cross Platform Debugger

2009-12-12 Thread Michel Catudal
Carsten Breuer a écrit : > Hi Guys, > > > is there any other GDB then insight or the EclipsePlugin under windows? > > > Best Regards, > > > > Carsten > > command line gdb Insight and Eclipse are just applications using gdb. You could write your own if you dislike those. Aside from that there a

[Openocd-development] Cross Platform Debugger

2009-12-12 Thread Carsten Breuer
Hi Guys, is there any other GDB then insight or the EclipsePlugin under windows? Best Regards, Carsten ___ Openocd-development mailing list Openocd-development@lists.berlios.de https://lists.berlios.de/mailman/listinfo/openocd-development