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

Yahoo! Groups Tips

Did you know...
Message search is now enhanced, find messages faster. Take it for a spin.

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 3217 - 3246 of 4906   Oldest  |  < Older  |  Newer >  |  Newest
Messages: Simplify | Expand   (Group by Topic) Author Sort by Date ^
3217
... insight-6.1 . ... error near ... Thanks for your help. I used your scripts as it's explain in the link above. I still have an error with the script...
mtierrie
Offline Send Email
Apr 2, 2007
9:11 am
3218
... Did you install the flex package? TomW -- Tom Walsh - WN3L - Embedded Systems Consultant http://openhardware.net http://cyberiansoftware.com...
Tom Walsh
twalsh0001
Offline Send Email
Apr 2, 2007
9:16 am
3219
... the flex package was missing. Everything works fine now! thank you!...
mtierrie
Offline Send Email
Apr 2, 2007
1:27 pm
3220
Is there a stl lib for arm-elf- gnu toolchain ? The vector template has indifined reference! 1>./Ufo372/LibMain/src/main.o: In function `std::vector<int, ...
csurauer
Offline Send Email
Apr 2, 2007
3:38 pm
3221
... Heh, sometimes, we just cannot see the trees for the forest. And, that is what mailing lists are for. ;-) Regards, TomW -- Tom Walsh - WN3L - Embedded...
Tom Walsh
twalsh0001
Offline Send Email
Apr 2, 2007
5:17 pm
3222
I'm pretty new to the gnu-arm tools and was wondering if anyone could point out a site or tutorial on the typical steps need to do thinks like compiling with...
donkicad
Offline Send Email
Apr 2, 2007
8:40 pm
3223
I noticed in quite a few gnuarm examples that vectors are placed in the correct place based on the order they are linked in. I would rather be a little more...
wz2b
Offline Send Email
Apr 3, 2007
12:13 pm
3224
... I have seen a lot of "information" about this that suggests the fix is to recompile gdb with a line altered or commented out. I don't know if my solution...
wz2b
Offline Send Email
Apr 3, 2007
1:17 pm
3225
Regarding resets, I am somewhat new to this having just bought an Olimex LPC2129 development board and a parallel jtag adapter. My development environment is...
wz2b
Offline Send Email
Apr 3, 2007
1:34 pm
3226
... The major advantage to using stabs+ is that it is an extenstion of the stabs debug info spec. It lets you work with 'long long int' values with gdb (64...
Tom Walsh
twalsh0001
Offline Send Email
Apr 3, 2007
4:31 pm
3227
... I have done this, but don't have any examples readily at hand. I would get rid of the "KEEP" as I don't recognize that keyword. It is probably what is...
Tom Walsh
twalsh0001
Offline Send Email
Apr 3, 2007
4:48 pm
3228
... I wonder whether this is another one of those locating-stuff-at-zero problems. I never use location zero. Most ARM parts will have some alternate address ...
Charles Manning
embeddedjanitor
Offline Send Email
Apr 3, 2007
10:26 pm
3229
... I once did some stuff for LPC2xxx. See jtaginit.s in the files area of the LPC2000 yahoo group. Instead of letting the code just run off crazily, run a...
Charles Manning
embeddedjanitor
Offline Send Email
Apr 3, 2007
10:36 pm
3230
... probably ... You know, I picked that up from somewhere else ... either msp430 or freescale DSP56F8XXX. I carried it over without thinking about it. gnu ld...
wz2b
Offline Send Email
Apr 4, 2007
1:29 am
3231
... Keep works fine. It forces the linker to keep some symbols when you do dead-code stripping with gc-sections. The kept symbols them form the roots of the...
Charles Manning
embeddedjanitor
Offline Send Email
Apr 4, 2007
5:52 am
3232
... The problem becomes one that the processor may abort before you get a chance to "catch it" with the JTAG. I put a short delay loop in my crt0.S to give...
Tom Walsh
twalsh0001
Offline Send Email
Apr 4, 2007
5:19 pm
3233
So how should I go about wrapping ldm / stm for usage in C land? I tried: typedef struct { UNS_32 reg[2]; } arm_2_registers_t; static inline arm_2_registers_t...
Bryce Schober
brycesho
Offline Send Email
Apr 6, 2007
11:09 pm
3234
... http://www.google.com/search?hl=en&q=gcc%20inline%20assembly&btnG=Google+Search section "5.3 Clobber List" should be what you want. There should be ...
Tom Walsh
twalsh0001
Offline Send Email
Apr 7, 2007
3:03 am
3235
But the problem is getting the result of the ldm into named C variables w/o spending extra instructions to move from specific early-clobbered registers to the...
Bryce Schober
brycesho
Offline Send Email
Apr 7, 2007
8:36 pm
3236
LPC2129 single stepping with gdb/openocd seems very unreliable to me. It works especially poorly if I have a breakpoint set. I have found that if I delete all...
wz2b
Offline Send Email
Apr 9, 2007
1:53 pm
3237
Hi, there are two hardware breakpoints available, and single-stepping uses both of them, but that shouldn't be a problem, as OpenOCD temporarily disables the ...
Dominic Rath
vmaster_05
Offline Send Email
Apr 9, 2007
4:25 pm
3238
... Hmm, JTAG (and Insight) works fine with the BDI2000... I did notice that using one of the USB JTAG units that they were pretty slow at singlestepping...
Tom Walsh
twalsh0001
Offline Send Email
Apr 9, 2007
4:47 pm
3239
... Yes there are limits to the number of hardware breakpoints. The stepping requires the use of one of the break point registers. To better understand what...
Charles Manning
embeddedjanitor
Offline Send Email
Apr 9, 2007
6:41 pm
3240
When running from flash you can only have 2 hardware breakpoints set at any one time. If you need more, run your code from RAM instead. As well, turn off all...
Hitaish Sharma
hockeymonk
Offline Send Email
Apr 9, 2007
11:21 pm
3241
I moved from Fedora to Ubuntu 6.10 (Edgy). The gnu-arm toolchain built fine except that I can't build gdb. I get the following error when I run 'make all' ...
armdeveloper
Offline Send Email
Apr 11, 2007
1:43 am
3242
... It says that a library is missing. Typically, default install of any distro is missing some type of development library. There are many libraries...
Tom Walsh
twalsh0001
Offline Send Email
Apr 11, 2007
1:57 am
3243
Further to this problem, I found this: http://ubuntuforums.org/showthread.php?t=153223&highlight=termcap that says: --with-termlib=LIB terminal library is ...
armdeveloper
Offline Send Email
Apr 11, 2007
3:36 am
3244
... uh, do you have 'ncurses-devel' installed: [tom@ugly1 ~]$ rpm -qa | grep ncurses lib64ncurses5-5.5-1.20051029.4mdv2007.0 ...
Tom Walsh
twalsh0001
Offline Send Email
Apr 11, 2007
7:54 am
3245
I think I might see where the problem is here. armdeveloper is using Ubuntu apparently - he probably has not enabled the source code repositories, so does not...
rm_sharkey
Offline Send Email
Apr 11, 2007
2:31 pm
3246
... Installing ncurses-devel fixed this problem....
armdeveloper
Offline Send Email
Apr 11, 2007
2:40 pm
Messages 3217 - 3246 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