Search the web
Sign In
New User? Sign Up
lpc2000 · LPC ARM Group
? Already a member? Sign in to Yahoo!

Yahoo! Groups Tips

Did you know...
Want your group to be featured on the Yahoo! Groups website? 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 40034 - 40063 of 45910   Oldest  |  < Older  |  Newer >  |  Newest
Messages: Simplify | Expand   (Group by Topic) Author Sort by Date ^
40034
Hi, Today I'm working on this too, could it be possible to get some sample code of this? because at the moment I'm not getting it to work... Many thanks in...
Nico Bollen
partytubie
Offline Send Email
Mar 1, 2009
12:08 pm
40035
at the moment I'm waiting for my new board to test it. but this version should work (lcd part) ... -- embedded projects GmbH Auf dem Kreuz 20 86152 Augsburg...
Benedikt Sauter
benedikt.sauter
Offline Send Email
Mar 1, 2009
12:15 pm
40036
Hi, I'm trying to get the FreeRTOS working on my LPC2148 Header board <http://www.olimex.com/dev/lpc-h2148.html> from Olimex with the Eclipse IDE and the...
kevin.kessels
Offline Send Email
Mar 1, 2009
1:54 pm
40037
Many thanks... I'm going to test this as soon as possible, looks great, and will let you know how it went. Greets, Nico ... sample...
Nico Bollen
partytubie
Offline Send Email
Mar 1, 2009
3:11 pm
40038
Hello all, i have been working on trying to get my UART0 working on my ollimex LPC2468 dev board, however when i run the program it only shows me rubbish on...
big_poo69
Offline Send Email
Mar 1, 2009
5:09 pm
40039
This saved me too! Thanks!...
bjorn@...
Send Email
Mar 1, 2009
5:09 pm
40040
... My preference when using Eclipse is to setup the project as a standard make project, rather than a managed make project. If you have a makefile that is...
FreeRTOS.org Info
freertos
Offline Send Email
Mar 1, 2009
5:58 pm
40041
Hi all, A question regarding execution times on instructions (which doesn't match expectations). I have a LPC2103 running with 16MHz oscillator and 4x...
Mihai Andrei Stanimir
stanimirmihai
Online Now Send Email
Mar 1, 2009
6:33 pm
40042
... match ... 64MHz). ... (set to 0 ... meaning it ... think I'm ... clock ... slow down ... it ... Check out "fast GPIO" mode (search the LPC2103 user...
tcirobot
Offline Send Email
Mar 1, 2009
6:54 pm
40043
... I think it is not the instruction taking the cycles but the access to the IO-registers. You are using legacy IO which goes through two buses (AHB and APB)....
Timo
tike64
Offline Send Email
Mar 1, 2009
6:58 pm
40044
See my comments inline. ... Do you actually have a PC UART that can support this baud rate? ... Perhaps you meant: PINSEL0 = PINSEL0 | 1<<4; // Select UART0...
Michael Anton
mike_antonca
Offline Send Email
Mar 1, 2009
7:30 pm
40045
... From: "Mihai Andrei Stanimir" <mihai.stanimir@...> To: <lpc2000@yahoogroups.com> Sent: Sunday, March 01, 2009 6:33 PM Subject: [lpc2000] ARM...
leon Heller
leon_heller
Offline Send Email
Mar 1, 2009
7:34 pm
40046
Thanks guys, I switched to FIO and code runs 3.74 times faster. One FIO operation takes about 4.5 cycles now (from 22.8 with legacy IO). Mihai [Non-text...
Mihai Andrei Stanimir
stanimirmihai
Online Now Send Email
Mar 1, 2009
7:35 pm
40047
Hi, One way of fixing this is to do the following: In Makefile, move "export ROOT..." and "export BASEINCLUDE..." so they are declared before "export...
Jean-Sebastien Stoezel
jsstoezel
Offline Send Email
Mar 1, 2009
7:47 pm
40048
I've been trying to figure out the source of this problem also. As an experiment, I simplified the routine in question, as much as I could (by removing its...
brian_myers888
Offline Send Email
Mar 1, 2009
9:07 pm
40049
Also - since Rowley has been mentioned in this thread, I think it's only fair to say that this is definitely a FWLib problem, and NOT a Rowley problem. If I...
brian_myers888
Offline Send Email
Mar 1, 2009
9:18 pm
40050
Unfortunately this is still not working for me, gives me the same (13) errors. Maybe it's possible that someone can post an working eclipse project for the...
kevin.kessels
Offline Send Email
Mar 1, 2009
9:39 pm
40051
Hi, I have declared a large array of constant data. The linker puts this variable in the .data section of the program image. This eats up a large chunk of the...
Jean-Sebastien Stoezel
jsstoezel
Offline Send Email
Mar 2, 2009
4:47 am
40052
const Cheers, Bruce ... From: lpc2000@yahoogroups.com [mailto:lpc2000@yahoogroups.com] On Behalf Of Jean-Sebastien Stoezel Sent: Monday, 2 March 2009 3:48 PM ...
Bruce Paterson
abruceperson
Offline Send Email
Mar 2, 2009
5:10 am
40053
... The best is to use __attribute__, but using something like this helped me: const char * const texts[] = { "abc", "def" }; All is placed in .rodata, w/o the...
42Bastian
bastian42
Offline Send Email
Mar 2, 2009
6:47 am
40054
... You can also add static if the array is not used outside the current translation unit (.c file and all its includes). Might help optimisation (might not)....
Peter Vidler
techttesystems
Offline Send Email
Mar 2, 2009
9:30 am
40055
... casting is evil ! ... -- 42Bastian Note: SPAM-only account, direct mail to bs42@......
42Bastian
bastian42
Offline Send Email
Mar 2, 2009
9:39 am
40056
... ...and frequently implicit. Although I'm pretty sure you'd get a warning. Pete -- Peter J. Vidler Senior Systems Developer, TTE Systems Ltd ...
Peter Vidler
techttesystems
Offline Send Email
Mar 2, 2009
9:45 am
40057
Peter, ... Not when casting to something more restrictive. And not when using the standard library either: try looking up the definition of strstr, for ...
Paul Curtis
paul_l_curtis
Offline Send Email
Mar 2, 2009
9:56 am
40058
... As far as const goes, sure (but casted consts shouldn't end up in .rodata). Casting between scalar types is obviously the other way around. Sometimes I...
Peter Vidler
techttesystems
Offline Send Email
Mar 2, 2009
10:13 am
40059
hi, how to interface the temperature sensor(LM35) to ARM controller and the data should be transferred through CAN to the other controller and that should be...
godi sony
sonygodi@...
Send Email
Mar 2, 2009
11:01 am
40060
How soon do you need it? I am busy right now ... and the ... that...
jdauchot
Offline Send Email
Mar 2, 2009
11:17 am
40061
Hi, Thanks for the answer. Const doesn't do it though that's the issue, sorry I should have mentioned I had already tried this. Jean On Sun, Mar 1, 2009 at...
Jean-Sebastien Stoezel
jsstoezel
Offline Send Email
Mar 2, 2009
12:51 pm
40062
I though one reason was code execution time... ... [Non-text portions of this message have been removed]...
Jean-Sebastien Stoezel
jsstoezel
Offline Send Email
Mar 2, 2009
12:56 pm
40063
... Might be a linker script issue -- can you post the relevant parts of it? If you want to force a variable into a specific section, and you're using GCC, you...
Peter Vidler
techttesystems
Offline Send Email
Mar 2, 2009
12:56 pm
Messages 40034 - 40063 of 45910   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