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...
Hear how Yahoo! Groups has changed the lives of others. Take me there.

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 705 - 734 of 1912   Oldest  |  < Older  |  Newer >  |  Newest
Messages: Simplify | Expand   (Group by Topic) Author Sort by Date ^
705
... I've got WinAVR and that doesn;t work either. The following happens with it: C:\AVRX\avrx>make gcc avr-gcc -x assembler-with-cpp -mmcu=at90s8535 -c ...
leon_heller
Offline Send Email
Oct 8, 2003
8:48 pm
706
... You must look at makefile. There are a line like: DEBUG = -DSINGLESTEPSUPPORT # ABSPATH = g:/mydocu~1/robotics/avrx-dev/avrx # ABSPATH =...
t2000dolata
Offline Send Email
Oct 10, 2003
2:06 pm
707
... Thanks. I'd done SET AVRX=c:\AVRX The makefile reads: DEBUG = -DSINGLESTEPSUPPORT # ABSPATH = C:/AVRX/avrx ABSPATH = $(AVRX)/avrx RM = rm -f INCDIR = . but...
Leon Heller
leon_heller
Offline Send Email
Oct 12, 2003
11:17 am
708
... I do ... please ... I've just worked out that io-avr.h is probably the WinAVR io.h file. I now get: C:\AVRX\avrx>make gcc avr-gcc -x assembler-with-cpp...
leon_heller
Offline Send Email
Oct 12, 2003
12:42 pm
709
I just found that I should be using 2.6e from the Group Files area, rather than 2.6d on the AvrX web site. That builds OK. Thanks for the help. I'll write up...
leon_heller
Offline Send Email
Oct 12, 2003
1:19 pm
710
I get the following error when building the Timers example: C:\AVRX\Examples>make gcc avr-gcc -c Timers.c -I. -I../avrx -I/avr/inc -Os -Wall -mmcu=at90s8535 -g...
leon_heller
Offline Send Email
Oct 12, 2003
2:46 pm
711
The latest WinAVR doesn't support the old Atmel obj file. So any targets of the form %obj: %elf are not supported as are any rules involving "objtool", the...
Larry Barello
lbarello
Offline Send Email
Oct 12, 2003
3:30 pm
712
... Thanks, Larry. I deleted the %obj and %cof rules and added the above. However, I now get: C:\AVRX\Examples>make gcc C:\WINAVR\UTILS\BIN\MAKE.EXE: *** No...
leon_heller
Offline Send Email
Oct 12, 2003
4:16 pm
713
Find the rule "gcc", look at all the requirements (to the right of the colon) and delete "timers.obj" since object files are now obsolete. Make sure you have...
Larry Barello
lbarello
Offline Send Email
Oct 12, 2003
5:15 pm
714
... Make ... I deleted $(SRC:.c=.obj) and tried this: gcc: $(SRC:.c=.cof) $(SRC:.c=.hex) $(SRC:.c=.eep) but got this: C:\AVRX\Examples>make gcc avr-gcc -c...
leon_heller
Offline Send Email
Oct 12, 2003
6:55 pm
715
There is no "elfcoff" tool anymore. You need to get rid of those rules and replace them with the ones I gave you earlier. ... From: leon_heller...
Larry Barello
lbarello
Offline Send Email
Oct 12, 2003
7:12 pm
716
It builds now. I've appended the edited makefile, in case anyone else is using WinAVR and has problems. Thanks, Larry. Leon # AvrX 2.5 GCC Examples makefile #...
leon_heller
Offline Send Email
Oct 12, 2003
7:31 pm
717
I had lots of problems building AvrX using the WinAVR gcc tools for the AVR, so I thought I'd upload my corrected version. It's based on version 2.6e of AvrX,...
leon_heller
Offline Send Email
Oct 12, 2003
8:19 pm
718
Hi Larry et al. I would like to download the AvrX's latest sources. What can I do about it? Best regards, -- John Yannakopoulos....
John Yannakopoulos
giannak@...
Send Email
Oct 19, 2003
3:46 pm
719
In the files section of avrx mailing list: www.yahoogroups.com/files/avrx Cheers! ... From: John Yannakopoulos [mailto:giannak@...] Sent: Sunday,...
Larry Barello
lbarello
Offline Send Email
Oct 19, 2003
3:50 pm
720
Is there any chance of running AVRX on a mega16? I am working on a wireless sensor network project and a RTOS would be very helpful for handling the radio...
james_a_russo
Offline Send Email
Oct 27, 2003
10:30 pm
721
I don't see why not as I've used it on a mega8 once (more for convenience). Later,...
Stephane Gauthier
stephane641
Offline Send Email
Oct 27, 2003
10:55 pm
722
I'm running it on an AtMega16 just fine. -brian ... From: Stephane Gauthier [mailto:stephane641@...] Sent: Monday, October 27, 2003 5:56 PM To:...
Brian Cuthie
codejunky2000
Offline Send Email
Oct 27, 2003
11:03 pm
723
I recently updated from 3.2 to 3.3.1 and am having trouble running the AVRX code. Compiles with the only warning "CS00 redifined in io.h". Anybody having...
Michael
Hudzilla
Offline Send Email
Oct 28, 2003
12:13 am
724
It would help if you included a bit more context - like the actual error messages. However: Since there were many changes in GCC w/regard to I/O defines and...
Larry Barello
lbarello
Offline Send Email
Oct 28, 2003
12:27 am
725
Ok, thanks. I'm going to give it a go.. :-) -jr ... a ... for ... <http://rd.yahoo.com/M=194081.4074964.5287182.1261774/D=egroupweb/S=17 05 ... ...
james_a_russo
Offline Send Email
Oct 29, 2003
3:13 pm
726
Hello! I don't yet have a possibility to debug my AvrX program with ICE or software processor.. so I'm bit confused with task stack sizes. My program uses both...
lokkihybridi
Offline Send Email
Nov 13, 2003
1:26 pm
727
AvrX stacks interrupts on the AvrX stack, which is nominally set to the stack GCC uses (end of ram, or internal sram). Individual task stacks only need to...
Larry Barello
lbarello
Offline Send Email
Nov 13, 2003
3:03 pm
728
Good mornign! Thanks Larry, that really cleared things up for me.. and I just want to thank you for a grrreat OS that you have made. -Toni Royhy...
lokkihybridi
Offline Send Email
Nov 14, 2003
5:50 am
729
Speaking of stack size... I have a program that analyzes AVR binaries to find their worst-case stack memory requirements. It is described here: ...
John Regehr
sbzz1e
Offline Send Email
Nov 14, 2003
9:50 pm
730
Well, I'm trying for the Mega16 but with-out any luck! I'm getting this: E:/AVRX/avrx/serialio.s: Assembler messages: E:/AVRX/avrx/serialio.s:243: Error:...
Thomas West
tsqwest
Offline Send Email
Nov 19, 2003
5:25 pm
731
Well, I'm trying for the Mega16 but with-out any luck! I'm getting this: E:/AVRX/avrx/serialio.s: Assembler messages: E:/AVRX/avrx/serialio.s:243: Error:...
Thomas West
tsqwest
Offline Send Email
Nov 19, 2003
5:26 pm
732
Well I don't have the same luch with the Mega16. I'm getting the following: E:/AVRX/avrx/serialio.s: Assembler messages: E:/AVRX/avrx/serialio.s:243: Error:...
Thomas West
tsqwest
Offline Send Email
Nov 19, 2003
5:37 pm
733
Which version are you using? You need to get the latest source from www.yahoogroups.com/group/avrx files section (2.6e). It has to do with how I/O ports are...
Larry Barello
lbarello
Offline Send Email
Nov 19, 2003
5:47 pm
734
Is there any way to experimentaly obtain minimal stack size that enought for specified thread? My thread calls any functions that uses unknown stack space. So,...
an2an_1970
Offline Send Email
Nov 23, 2003
12:55 am
Messages 705 - 734 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