Search the web
Sign In
New User? Sign Up
gnuarm
? Already a member? Sign in to Yahoo!

Yahoo! Groups Tips

Did you know...
Show off your group to the world. Share a photo of your group with us.

Best of Y! Groups

   Check them out and nominate your group.
Having problems with message search? Fill out this form to ensure your group is one of the first to be migrated to the new message search system.

Messages

  Messages Help
Advanced
Messages 2443 - 2472 of 4906   Oldest  |  < Older  |  Newer >  |  Newest
Messages: Simplify | Expand   (Group by Topic) Author Sort by Date ^
2443
I recently received a Keil eval board (MCB2140) and a ULINK USB JTag interface at a workshop. I have a Wiggler I use with another board. Can anyone suggest how...
glen_biagioni
Offline Send Email
Aug 1, 2006
5:09 pm
2444
... Hello Glen, take a look here: http://www.usbdip.de/en/armdev/index.html Perhaps this will help you to setup a toolchain with the wiggler. Best regards, ...
mifi4242
Offline Send Email
Aug 1, 2006
5:13 pm
2445
Michael Thanks for your suggestion. I have a toolchain set up for the Wiggler, but using OCDRemote rather than OpenOCD. GDB/OCDRemote doesn't properly control...
glen_biagioni
Offline Send Email
Aug 1, 2006
5:31 pm
2446
... my experience has been that openocds developer is very responsive if you send him meaningful data or even patches. he's also continually fixing bugs and...
clemens fischer
numanao
Offline Send Email
Aug 1, 2006
6:04 pm
2447
OK, there is hope. I spent the time to replace OCDRemote with OpenOCD in my toolchain. GDB can now attach to and control the processor using the Wiggler - not...
glen_biagioni
Offline Send Email
Aug 1, 2006
11:03 pm
2448
Hello, I am trying to write something like this: #if (compiled in ARM mode) code 1 #else // compiled in THUMB mode code 2 What the (compile in ARM mode) test...
Vital
vitalhb
Offline Send Email
Aug 2, 2006
1:03 pm
2449
__thumb__ is defined for THUMB mode, I believe that there is a similar one for ARM mode. printf("==> %s mode <==\n\n", #ifdef __thumb__ "THUMB" #else "ARM" ...
David Roethig
droethig
Offline Send Email
Aug 2, 2006
2:10 pm
2450
That´s exactly what I was looking for. thank you! Vital...
Vital
vitalhb
Offline Send Email
Aug 2, 2006
2:51 pm
2451
... touch foo.h; cpp -dM foo.h Will dump all the possible predefined macros for that gcc. TomW ... -- Tom Walsh - WN3L - Embedded Systems Consultant ...
Tom Walsh
twalsh0001
Offline Send Email
Aug 2, 2006
3:18 pm
2452
... I'd made this note a while back: Compiler trick: useful for seeing how GCC has been built. echo | gcc -E -dM - Lists all #defines that are inherent in a...
David Hawkins
dave_w_hawkins
Offline Send Email
Aug 2, 2006
4:04 pm
2453
Hello, Problem exist during link time. I am using -lgccthumb (compiling arm-none-eabi-gcc -mthumb). Please let me know how to get support of "gccthumb"...
Vinay SG
sg_vinay
Offline Send Email
Aug 4, 2006
6:49 am
2454
... By saying "-lgccthumb", you are telling the compiler to look through the library path(s) for "libgccthumb.a". If you have a "libgccthumb.a" in that path,...
Tom Walsh
twalsh0001
Offline Send Email
Aug 4, 2006
10:41 am
2455
... I agree that it should be there. But I do not know like does it come from arm gnu tool chain or is it propriatory file. I see this file exists in default...
Vinay SG
sg_vinay
Offline Send Email
Aug 4, 2006
12:00 pm
2456
... What is an "arm- none-eabi" target? I don't recognize that. TomW -- Tom Walsh - WN3L - Embedded Systems Consultant http://openhardware.net,...
Tom Walsh
twalsh0001
Offline Send Email
Aug 4, 2006
2:48 pm
2457
The Windows binary on gnuarm.org was updated to GCC 4.1.1 along with binutils 2.17 and insight 6.5, but the sources were updated only for binutils. I don't...
Rick Collins
gnuarm
Offline Send Email
Aug 5, 2006
11:54 pm
2458
Dear Friends, How can i find STR91x Header Files for GNUARM? Latest support package on official website only support STR71x not STR73x or STR91x. Thanks....
M.R.Memarian
memarian_mr
Offline Send Email
Aug 7, 2006
10:49 am
2459
Hi all, I'm new to both Eclipse and GNUARM. I've been using the KEIL demo environment with the GCC compiler and everything runs tickety-poo. For Eclipse, I...
va7dij
Offline Send Email
Aug 8, 2006
1:45 am
2460
... The floating point libs may not have been compiled into your GNUARM. This is quite common. Float operations chew up a lot of code / RAM space. TomW -- Tom...
Tom Walsh
twalsh0001
Offline Send Email
Aug 8, 2006
2:25 am
2461
today i tried compiling my app using CFLAGS += -mthumb-interwork -mthumb and from the linker i got "warning: interworking not enabled", but the code works!...
clemens fischer
numanao
Offline Send Email
Aug 8, 2006
4:19 pm
2462
... even with newlib configured to cater for floats, one has to have the symbol "end" defined after the BSS segment, because eg. "snprintf()" calls "malloc()"...
clemens fischer
numanao
Offline Send Email
Aug 8, 2006
4:24 pm
2463
I saw arm-none-eabi targets when I used the windows native gcc cross complier chain from Codesourcery. EABI is an alternative (newer?) to ELF output format. ...
Bruce Paterson
abruceperson
Offline Send Email
Aug 10, 2006
2:02 am
2464
Hi, I am developing a non-game application for the Gameboy Advance and would like to debug it remotely using the GDB and serial communication. A generic gdb...
Vital
vitalhb
Offline Send Email
Aug 10, 2006
1:11 pm
2465
... this would only work if your arm doesn't run its program from builtin flash memory, because the debugger wants to put an illegal instruction at...
clemens fischer
numanao
Offline Send Email
Aug 10, 2006
4:04 pm
2466
Thanks for answering. Unfortunately, the Gameboy Advance does not have a JTAG interface, so I have to use the stub. During debug phase, I will run the software...
Vital
vitalhb
Offline Send Email
Aug 10, 2006
4:29 pm
2467
... somebody either here or on lpc2000@yahoogroups, somebody reported progress on such a debug-stub, you might want to check the archives. i don't remember...
clemens fischer
numanao
Offline Send Email
Aug 10, 2006
5:55 pm
2468
last time i checked, tom walshs http://www.openhardware.net/Embedded_ARM/Toolchain/ contained the best instructions for making the toolchain on unix-like...
clemens fischer
numanao
Offline Send Email
Aug 10, 2006
7:10 pm
2469
Let me ask a quite basic question. In 'b <LABEL>', compiler takes LABEL as relative address which is not supposed to be. As an example, .org 0x1000 b START ...
Jung Wook Cho
govesta
Offline Send Email
Aug 11, 2006
8:50 am
2470
... The branch opcode takes a relative distance, not a hard address. I think I know what you are doing: =============== begin BigFile.S ================== ...
Tom Walsh
twalsh0001
Offline Send Email
Aug 11, 2006
3:29 pm
2471
TomW, Thank you very much. I didn't expect such a kind reply. However, it is simple code with a single file so I didn't want to use loader. And, even the...
Jung Wook Cho
govesta
Offline Send Email
Aug 12, 2006
1:22 am
2472
Folks, I'm a newbie to ARM, but not a newbie to microcontrollers and hardware. I'm looking for a simplest ARM7 board possible capable of running Linux. The...
Nick Alexeev
kender_a
Offline Send Email
Aug 12, 2006
1:24 am
Messages 2443 - 2472 of 4906   Oldest  |  < Older  |  Newer >  |  Newest
Advanced
Add to My Yahoo!      XML What's This?

Copyright © 2009 Yahoo! Inc. All rights reserved.
Privacy Policy - Terms of Service - Guidelines - Help