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

Yahoo! Groups Tips

Did you know...
Want to share photos of your group with the world? Add a group photo to Flickr.

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 3330 - 3359 of 4906   Oldest  |  < Older  |  Newer >  |  Newest
Messages: Simplify | Expand   (Group by Topic) Author Sort by Date ^
3330
Hello, after setting the ARCH and the CROSS_COMPILE variables in the makefile and successfully configuring the kernel for one of the standard arm targets (make...
Tom
fivemiletom
Offline Send Email
May 2, 2007
1:25 am
3331
... available from ... I have update my version to the latest : (2007-04-26 16:40 CEST) ... That is the result : (gdb) set debug remote 1 (gdb) print...
patrick_deflandre
patrick_defl...
Offline Send Email
May 2, 2007
7:17 am
3332
Hello Jimmy, the error in your make file may come from wrong usage of the static patterns The following example is from the "static usage" node of the info...
jens.potschadtke@...
antragsformular
Offline Send Email
May 2, 2007
8:08 am
3333
I've found my mistake ! I used previously an mspgcc compiler for testing purpose on a msp430 target. I added at this time a .gdbinit on my home directory with...
patrick_deflandre
patrick_defl...
Offline Send Email
May 2, 2007
12:39 pm
3334
Thanks everyone for all your help. I was finally able to get it working properly. Now if I could only figure out how IAR builds dependencies so that it won't...
Jimmy Kaz
ancaritha
Offline Send Email
May 2, 2007
2:20 pm
3335
... The GNUARM tools are arm-elf-xxx, they are setup for bare-metal targets. What you want is an arm-linux-xxx build. Go and check out crosstool by Dan Kegel...
David Hawkins
dave_w_hawkins
Offline Send Email
May 2, 2007
4:19 pm
3336
This brings up a good point. It seems that it might be a better practice to have a .gdbinit file in the current project directory instead of in the user's...
Johnny Cybermyth
djcybermyth
Offline Send Email
May 2, 2007
4:46 pm
3337
... I don't use ".gdbinit" files. I haven't found any need for them, as yet. TomW -- Tom Walsh - WN3L - Embedded Systems Consultant http://openhardware.net...
Tom Walsh
twalsh0001
Offline Send Email
May 2, 2007
4:50 pm
3338
Jimmy Kaz Wrote ... gcc has a nice option for that. I've used it even when using a different cross compiler. gcc would build the dependencies and then make...
subscriptions@...
robertadsett
Offline Send Email
May 2, 2007
7:30 pm
3339
... yet. ... Everything is working fine without any ".gdbinit" file. And be sure I will move straightforward this file in my project directory, if ever I need...
patrick_deflandre
patrick_defl...
Offline Send Email
May 3, 2007
1:18 pm
3340
Hi All, Where do I find the definition of the intrinsic data types for GUNARM GCC. Eg for 8bit SDCC I can find Supported data-types are: • char (8 bits, 1...
joegldbrg
Offline Send Email
May 6, 2007
2:13 am
3341
... c99 defines stdint.h which defines unambiguous types like int8_t, uint8_t, int16_t, uint16_t, etc. http://en.wikipedia.org/wiki/Stdint.h Try using those...
David Hawkins
dave_w_hawkins
Offline Send Email
May 6, 2007
2:23 am
3342
... http://www.arm.com/pdfs/aapcs.pdf Pages 10 and 24 are the starting points. Robert http://www.aeolusdevelopment.com/ From the Divided by a Common Language...
Robert Adsett
robertadsett
Offline Send Email
May 6, 2007
2:44 am
3343
... You know, I've actually yet to see any good examples using stdint.h Any code I've seen uses the fixed width types as synonyms for char, int, long etc......
Robert Adsett
robertadsett
Offline Send Email
May 6, 2007
3:21 am
3344
I like to use the following typedefs for embedded projects. Here is a set for the ARM7. /// Boolean value { false, true } typedef bool bool_t; /// Signed...
mgray@...
kd7lmo
Offline Send Email
May 6, 2007
3:29 am
3345
... Yep, thats a fair comment. I used the types when working with a TI DSP, the TMS320C31, developing a communication protocol over the PCI bus. Unfortunately...
David Hawkins
dave_w_hawkins
Offline Send Email
May 6, 2007
3:34 am
3346
... Quite reasonable. Although it doesn't take into account endianness. I'd usually implement a set of cracker functions to provide the interface to the comm...
Robert Adsett
robertadsett
Offline Send Email
May 6, 2007
5:47 pm
3347
Hi Robert, ... Yeah, I think we've discussed this in the past. There are lots of binary representations, but I think the two most common ones are XDR and CDR ...
David Hawkins
dave_w_hawkins
Offline Send Email
May 7, 2007
4:46 pm
3348
... <snip> ... That makes sense. If you have 'heavy iron' involved might as well have it do the heavy lifting. I don't so I've never used XDR or CDR. I...
Robert Adsett
robertadsett
Offline Send Email
May 8, 2007
3:09 am
3349
Hello I'd like to extend arm instruction set of gnu assembler. From what should I start? It's necessity to modify as sources only, or ld sources too? Thanks in...
mflorek81
Offline Send Email
May 11, 2007
1:03 pm
3350
... Heh, probably I would start with an O'Reilly book. IIRC, there was / is a book about customizing gcc for a new processor. If not that, then I am sure that...
Tom Walsh
twalsh0001
Offline Send Email
May 11, 2007
1:52 pm
3351
... / is ... channel ... site. Your mail put me on the right track, thanks. -- Maciej Florek...
mflorek81
Offline Send Email
May 11, 2007
5:49 pm
3352
I made a function called usb_printf that has the same interface as printf and uses vsprintf to do its work. I tested this code on my desktop and it worked,...
spaghettibowl
Offline Send Email
May 12, 2007
8:07 pm
3353
If data in usb_printf() is the same as data in the while loop, then you are writing the vsprintf() result on top of the original data. That can't be good. ... ...
glen_biagioni
Offline Send Email
May 13, 2007
8:24 pm
3354
I made another buffer to hold vsprintf and now it works. Thanks....
spaghettibowl
Offline Send Email
May 13, 2007
8:42 pm
3355
hi all, I need a 16 bit unicode support in my toolchain as one of my application needs 16 bit unicode support .... But after building the ARM9tdmi toolchain ,...
Anandkumar, CB IN BLR...
anandkumarcb
Offline Send Email
May 14, 2007
6:15 am
3356
VICVectCntl0.word = portTIMER_VIC_CHANNEL | portTIMER_VIC_ENABLE; This line of C ultimately generates this: ldr r2, [pc, #52] mov r3, #36 strb r3, [r2] If I...
wz2b
Offline Send Email
May 18, 2007
4:35 am
3357
Couple other hints ... 0xfffff020 is the VIC protection register and it's 0 meaning unprotected (which shouldn't matter because I'm in mode 0x1F at this point...
wz2b
Offline Send Email
May 18, 2007
5:22 am
3358
Hello Chris, I do not have any experience with the LPC but I stumbled over one thing: with the name VICVectCntl0.word I would associate a word wide register...
jens.potschadtke@...
antragsformular
Offline Send Email
May 18, 2007
7:51 am
3359
... register (32 ... is the ... Hmm wow. I did not know that a register access could be restricted to 16 or 32 bits. You're right, the field is called .word...
wz2b
Offline Send Email
May 18, 2007
1:45 pm
Messages 3330 - 3359 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