I've just been handed an LPC3180 board with embedded linux and various software including the arm-gnu toolchain. This toolchain does not include any debugging...
Hi, I have no experience wit this but I think this should be done as if you would debug on a standard PC running Linux. So you need to start a GDB server on...
Hi David, ... Here's how you would use various tools: 1. JTAG debuggers The hardware is typically setup by a bootloader, and the bootloader passes Linux all...
The trouble is that gdbserver doesn't work with the Segger JLink. You have to buy a piece of hardware called "GDB Server" that costs 200 Euro that I don't...
As I pointed out before, gdbserver doesn't work with the Segger JLink. I'm trying to avoid forking out more money buying more hardware. ... gdbproxy, ... ...
Hi David, ... You would run gdbserver on the JLink for bootloader or kernel debugging, not application debugging. For application debugging, you can run...
Hi Dave, This is a philosophical thing. In the embedded world isn't even an 'application' part of the kernel? In the final product there won't be a command...
Hi, ... No. The only thing that goes into the *Linux* kernel is device drivers, and things of that sort. Applications would generally be written against the ...
Hi all, I got this inline problem solved with "__attribute__ ((always_inline))". But I've another strange behaviour with 4.3.2 In some computers (not...
... It doesn't show up in a quick search on Google. I guess it would be worth posting the MINIMUM amount of code necessary to duplicate the problem. I guess...
Thanks guys, I managed to sort out a solution with the development board running gdbserver and talking via a serial line to gdb on the host pc. BTW, my...
Hi, ... Could be lots of things :) If the program was built using a Makefile, then perhaps it was stripped. Use 'file' to see (Cygwin might not have it...
... Hi Dave, Check your makefiles. The most likely possibility is the build on Linux included the -g flag to generate debugging symbols, and the build on...
I am trying to force common symbols from a few files to be linked to a specific memory in the EXACT order in which they appear in the files. With the old i960...
hello everyone, Has anyone used GNU compiler with Keil IDE. my MCU is LPC2468. If yes i would like to know how to start a project with it. What all are the...
... eclipse. ... I have no idea. If you have a simulator and it can be driven by a command line then it should be possible to create a target in the Makefile...
Hi all, I'm new in this group, in the last week I have read many post in this forum and in many others to find a plugin for Eclipse that allow me to manage a...
... Since this is the GNUARM group, I assume you are interested in building ARM projects. For using Eclipse, the YAGARTO release (Eclipse+CDT+Toolchain) is...
Hi, I know that this question is unrelated to GNU ARM tools, but maybe someone can help me( MANY THANKS IN ADVANCE). I have configured the MMU in the same way...
Hey All, I am GNU ARM compiler i had created library file (.a file) for some c files but i don't know the correct way to link that file with my project file...
... There is nothing special about archives (.a) files. These are containers for object files, merely a convenient place to put them. I specify their use in...
... There are 2 basic ways you can handle libraries. The first is to just add the library.a file to your list of object files as Tom Walsh said. The second way...
I'm trying to read and understand the sources in /drivers/spi/busses. There are several references to a "5213" as though it was a discrete device. My efforts...
... Gee, I haven't a freaking clue as to what you are talking about. Are you assuming that everyone should know that you are working with some copy of...
... A wild guess is it _may_ refer to a Freescale ColdFire 5213 mcu, which has a SPI, which _may_ have been the target of the first developer(s). Larry...
Thanks, that seems to be right. Comments in the SPI driver sources in the LPC3180 Linux package refer to a "QSPI" (another unexplained reference). As the...
Hi everyone, this is my first post to the group. I have been handed a project that was developed with IAR Embedded Workshop Kickstart for an LPC2146, but it's...