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

Yahoo! Groups Tips

Did you know...
Real people. Real stories. See how Yahoo! Groups impacts members worldwide.

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 3066 - 3095 of 4906   Oldest  |  < Older  |  Newer >  |  Newest
Messages: Simplify | Expand   (Group by Topic) Author Sort by Date ^
3066
Dear Stephan Excuse me,I do not understand what you means. Today I write a simple program to try again.like below. Compilation is pass. but link is error. I...
fs92004
Offline Send Email
Feb 1, 2007
9:51 am
3067
If I put a table of data in to flash memory and I know the absolute memory address location. How do I read the flash data in to an array from a specific...
joegldbrg
Offline Send Email
Feb 1, 2007
10:16 am
3068
Unless your arm cpu has built in floating point support such as the one I am using, all floating point operations have to be done in software. This means that...
Stephan Rose
kermos2000
Offline Send Email
Feb 1, 2007
10:19 am
3069
int* memAddress = (int*)0x12000000; int values[3]; values[0] = *memAddress++; values[1] = *memAddress++; values[2] = *memAddress++; _____ From:...
Stephan Rose
kermos2000
Offline Send Email
Feb 1, 2007
10:27 am
3070
... Thanks for your speedy reply... Sorry another question... if the flash memory was stored in bytes (char) rather an int.... would the definition be. ...
joegldbrg
Offline Send Email
Feb 1, 2007
11:26 am
3071
Dear Stephan I use samsung s3c2410 . It doesn't buildin hardware fpu. Would you please give your project with simple floating operation for me reference. my...
fs92004
Offline Send Email
Feb 1, 2007
11:29 am
3072
I'm sorry but all my code is proprietary and unfortunately I cannot give that out. One thing though you may want to consider is using fixed point math instead....
Stephan Rose
kermos2000
Offline Send Email
Feb 1, 2007
12:41 pm
3073
You are getting the warning because you are assigned a (char*) to an unsigned char*. Change both either to char* or unsigned char* and it will be happy. As far...
Stephan Rose
kermos2000
Offline Send Email
Feb 1, 2007
12:42 pm
3074
Oh one additional note on what I wrote below. Since you are working with flash memory, you actually can only read. Not write. But the same concept of course...
Stephan Rose
kermos2000
Offline Send Email
Feb 1, 2007
12:47 pm
3075
<snip> Sorry to be a pain... I have been through 4 of my old C books. int* memAddress = (int*)0x12000000; // Stephan's example code int* is not mentioned in...
joegldbrg
Offline Send Email
Feb 1, 2007
1:16 pm
3076
Sorry, I meant int* variable and int *variable // Whats the difference? The books like int *variable Regards Joe...
joegldbrg
Offline Send Email
Feb 1, 2007
1:28 pm
3077
There is no difference, just personal preference where you like the * :-) Stephan _____ From: gnuarm@yahoogroups.com [mailto:gnuarm@yahoogroups.com] On Behalf...
Stephan Rose
kermos2000
Offline Send Email
Feb 1, 2007
2:00 pm
3078
Some person working with gnuarm and JTAGKEY with LPC2364? Franco...
franco.dalpero
Offline Send Email
Feb 1, 2007
3:39 pm
3079
I'm not working with either gnuarm or a LPC23xx, but I might be able to help you with problems regarding the OpenOCD - only if you tell us what your problem...
Dominic Rath
vmaster_05
Offline Send Email
Feb 1, 2007
4:15 pm
3080
Dear Stephan Thank you for your help ,I'll take your suggestion and using fixed point math .I have never saw this way to turn float into integer before.that...
fs92004
Offline Send Email
Feb 2, 2007
4:47 am
3081
To my reading, the reason that programmers put the asterix next to the variable name in the declaration is because the asterix "binds" on the variable name, ...
miblower
Offline Send Email
Feb 2, 2007
2:00 pm
3082
Dear Stephan Today I write a code for test cosin function. a error occured .... I think the math.h never be linked to code ... Why GNUARM 4.1.1 can't work...
fs92004
Offline Send Email
Feb 3, 2007
1:30 pm
3083
You also need to link in the math library. Add to your linker / gcc command line: <gcc/linker commands> -lm The -l tells the linker/compiler to include a...
John Clymer
stimey_mn
Offline Send Email
Feb 3, 2007
2:57 pm
3084
Dear John I follow your method ,add -lm to linker ,command line as below E:\ARM\2410_v5\arm-elf-ld -Ttext 0x00 -lm -o start.o main.o [enter] arm-elf-ld: cannot...
fs92004
Offline Send Email
Feb 4, 2007
1:52 am
3085
fs92004, I took your provided sample code: #include<math.h> int main() { double a =0 ; a=cos(90); } and compiled it with: arm-elf-gcc temp.c -nostartfiles -lm ...
John Clymer
stimey_mn
Offline Send Email
Feb 4, 2007
2:54 pm
3086
... There is no difference between int *x and int* x...
Charles Manning
embeddedjanitor
Offline Send Email
Feb 4, 2007
7:57 pm
3087
... This looks a bit strange. "-o start.o" says that you are placing the output (ie. the elf file) into the file called start.o You need to put the library...
Charles Manning
embeddedjanitor
Offline Send Email
Feb 4, 2007
8:07 pm
3088
... math.h is never linked in. a .h file is compiled. You mean the math library. A few things I can suggest: 1) Generate a map file and look at it. Does it...
Charles Manning
embeddedjanitor
Offline Send Email
Feb 4, 2007
8:11 pm
3089
I built and installed gdb 6.6 with configure: ../gdb-6.6/configure --target=arm-elf on Linux X86 box. Builds fine, but "target rdi" is gone. "help target"...
Michael K. Elwood
mkelwood
Offline Send Email
Feb 8, 2007
7:12 pm
3090
... Afraid this has been removed, look in the news file for more details. It was not really used and very unreliable. Regards Spen...
ntfreak2000
Offline Send Email
Feb 8, 2007
10:36 pm
3091
Cripes, I used it all the time. Yes, it had it's issues, but I got a lot of mileage out of it. I guess this means they have stranded all the Jeeni users out...
Michael K. Elwood
mkelwood
Offline Send Email
Feb 8, 2007
10:55 pm
3092
Hi, Uh...they did stripped out also all other users of 3rd party tools who use rdi to connect their favorite JTAG tool to gdb. For example I am unable to use...
Marko Panger
fe64970103
Offline Send Email
Feb 9, 2007
7:11 am
3093
How can I pass values into a link script ? Or Can I ? I have a link script (ld script) that works to my liking now. I use expressions to define stack sizes,...
fl429
Offline Send Email
Feb 12, 2007
8:42 pm
3094
... Can you use expressions in the MEMORY definition? If so, that is a very new thing. ... According to the ld manual you can add the following to a command...
Charles Manning
embeddedjanitor
Offline Send Email
Feb 12, 2007
11:54 pm
3095
... Unfortunately, no. I have yet to get the linker script to things like that. May I suggest, the solution may be to write the script contents "on the fly"...
Tom Walsh
twalsh0001
Offline Send Email
Feb 13, 2007
10:22 am
Messages 3066 - 3095 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