Search the web
Sign In
New User? Sign Up
avrx · Support group for the AvrX RTOS
? 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 1035 - 1065 of 1912   Oldest  |  < Older  |  Newer >  |  Newest
Messages: Simplify | Expand   (Group by Topic) Author Sort by Date ^
1035
Hello, I'm doing a uav project for college, and i need to know if avrx will work for my project. I am using two Uarts, one for communications, one for gps....
Aaron Littich
aaron_littich
Offline Send Email
Mar 8, 2005
2:59 pm
1036
... You will need to do some research on your own to really answer it. This list is for technical questions, NOT the open ended question you proposed....
pmastroianni@...
phillipmastr...
Offline Send Email
Mar 8, 2005
4:11 pm
1037
... Do you think Edison asked someone to reassure him that he was on the right track before he started work on the incandescent light? You'll never know for...
Jeff Barlow
jeffbarlow_9...
Offline Send Email
Mar 8, 2005
5:55 pm
1038
Hello Everyone, Has anyone interfaced Color Gragic LCD to AVR or other Microcontroller? I want to do this in my new project. Can anypone help me??? Regards ......
pravin meher
pravinmeher
Offline Send Email
Mar 13, 2005
3:03 pm
1039
Hello Everyone,Has anyone interfaced Color Grafic LCD to AVR or any other Microcontroller? I want to do this in my new project. Can anyone help me??? Regards ...
pravin meher
pravinmeher
Offline Send Email
Mar 14, 2005
3:50 am
1040
Hi, Perhaps someone else has a more positive opinion, if so, feel free to chime in. Here's my not-so-positive and not-so-professional opinion: Unless you have...
Tyler Colbert
shadowbane1000
Offline Send Email
Mar 14, 2005
6:31 pm
1042
http://www.apetech.de/article.php?artId=3&nnId=12 ... From: Tyler Colbert To: avrx@yahoogroups.com Sent: Monday, March 14, 2005 6:30 PM Subject: Re: [avrx]...
Tobias Schneider
schneidertobi
Offline Send Email
Mar 16, 2005
3:05 pm
1043
Dear all , I don't fixed the examples source code , but always compiler error, please tell me how should i do ? thanks a lot. Luke. avr-gcc -c Timers.c -I....
Luke.Wei
mrddt4todie
Offline Send Email
Mar 24, 2005
1:24 am
1044
Luke: the latest WinAVR compiler has removed all references to "inp" and "outp" You can replace this with direct PORT references. E.g. SomeVar = inp(PINB); ...
Larry Barello
lbarello
Offline Send Email
Mar 24, 2005
2:13 am
1045
For your second question, if you are using the WinAVR distribution, there is an application called MFile which will build you a make file. It is inclusive, you...
pmastroianni@...
phillipmastr...
Offline Send Email
Mar 24, 2005
3:49 pm
1046
Any body compile success with AVRX2.6e + WinAVR-20050214 , I can't complie it for any way [b]I get this error:[/b] ... aavr -b -re -v1 -I. -I -D__AT90S8535__...
baolong_miss_you
baolong_miss...
Offline Send Email
Mar 29, 2005
2:19 pm
1047
Try "make gcc" The commands, below, are for the IAR compiler. ... From: baolong_miss_you [mailto:cuongdd@...] Sent: Monday, March 28, 2005 10:50 PM ...
Larry Barello
lbarello
Offline Send Email
Mar 29, 2005
2:42 pm
1048
I just posted a modified version of AvrX 2.6d that works with IAR Embedded Workbench 3.20C and newly released 4.10B. All examples and source code are...
steve_krepelka
Offline Send Email
Mar 31, 2005
4:58 pm
1049
thanks for your help, I have succssed with "make gcc" for kernel but get some error with Examples and TestCases MCUCR = 1<<SE; ----> invalid lvalue in...
baolong_miss_you
baolong_miss...
Offline Send Email
Apr 5, 2005
6:42 am
1050
I have succssed with "make gcc" for kernel but get some error with Examples and TestCases, I'm using WinAVR20050214 + AVRX2.6e MCUCR = 1<<SE; ----> invalid...
baolong_miss_you
baolong_miss...
Offline Send Email
Apr 9, 2005
1:31 am
1051
You are attempting to assign a value to a constant/defined value; i.e. not a variable, not a memory location...etc. Try: outp(MCUCR, (1 << SE)); Cheers, ...
Michael Stevens
jahooavrx
Offline Send Email
Apr 9, 2005
1:54 pm
1052
... Actually, outp is no longer valid in gcc-libc. It now uses direct assignment, as he used. You might want to check the manual for the latest version. ... If...
Christopher X. Candreva
ccandreva
Offline Send Email
Apr 10, 2005
3:50 am
1053
Thanks for your help, I think that it's not in avr-libc because it' compile success with no error when I used another example from www.avrfreaks.net with the...
baolong_miss_you
baolong_miss...
Offline Send Email
Apr 11, 2005
2:12 am
1054
I have fixed [Digest Number 400 error] by changing #define _SFR_ASM_COMPAT 1 to #define _SFR_ASM_COMPAT 0 in timers.c file :D but it generate the error such as...
baolong_miss_you
baolong_miss...
Offline Send Email
Apr 11, 2005
3:46 am
1055
WinAVR does not support the old "nordic" object file format, which is the error you are getting. You need to remove that target from the makefile and replace...
Larry Barello
lbarello
Offline Send Email
Apr 11, 2005
4:13 am
1056
... I think you just want to upgrade WinAVR then to the latest version, which has all the new compailer, binutils, library, etc. I'm running on Linux so I...
Christopher X. Candreva
ccandreva
Offline Send Email
Apr 11, 2005
2:44 pm
1057
Thank in advanced, but I don't know clearly about the makefile ... so Could you make an example for me or send me a new makefile with corrected this error ...
baolong_miss_you
baolong_miss...
Offline Send Email
Apr 15, 2005
5:32 am
1058
I just started using avrx, i.e. building timers.c and, trying to use the c-style assignment of i/o registers of course stumbled over _SFR_ASM_COMPAT being 1. ...
dl2thl
Offline Send Email
Apr 20, 2005
3:50 pm
1059
I'm sure someone has a solution for this common problem: My environment Windows XP WinAVR 20050214 AVRX makefile - I changed the pathname to be that of where I...
stevech11
Offline Send Email
Jun 5, 2005
6:24 am
1060
Hi. first thanks Larry Barell for AVRX. i used AVRX for a year and it satisfied all thing i needed. now i have some suggestion,please inform me about it. ...
mahdi j
mahditooba
Offline Send Email
Jun 14, 2005
3:32 pm
1061
... If this is specificly a uart function, I don't think it's as complicated as you are makeing it out to be. I've done this with simple blocking on a ...
Christopher X. Candreva
ccandreva
Offline Send Email
Jun 15, 2005
3:41 pm
1062
hi!! i am a beginner and really have a very little knowledge of how rtos is designed. if there are any members in the group with the same state that i am in,...
srikanth kulkarni
srikanthkulk...
Offline Send Email
Jun 17, 2005
2:08 pm
1063
Hi Shrikant, I am Pravin Meher from Pune. I also tried to learn avrx but I was not able to do so on my own. I found it difficult in getting started. I am...
pravin meher
pravinmeher
Offline Send Email
Jun 18, 2005
4:44 am
1064
hi pravin i am srikanth from b'lore. i have completed my B.E.(results awaited) in e&ce. i could understand very little about avrx. one good thing is that avr...
srikanth kulkarni
srikanthkulk...
Offline Send Email
Jun 18, 2005
2:11 pm
1065
Dear Christopher. that's just simple example to explain case. how about access more complicated such TCP/IP FileSystem internal routines and .... it's easyer...
mahdi jahangiri
mahditooba
Offline Send Email
Jun 19, 2005
2:08 pm
Messages 1035 - 1065 of 1912   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