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.

Messages

  Messages Help
Advanced
Messages 726 - 756 of 1835   Oldest  |  < Older  |  Newer >  |  Newest
Messages: Simplify | Expand   (Group by Topic) Author Sort by Date ^
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
735
I make my stacks large - at least 16-32 bytes bigger than I expect to need. Then I fill the stack with 0xFFFF (using either the supplied monitor or the JTAG or...
Larry Barello
lbarello
Offline Send Email
Nov 23, 2003
1:03 am
736
Hi Is it possible anywhere get soucers/examples? Thnx....
kazbekovich
Offline Send Email
Nov 23, 2003
4:35 pm
737
Hi Is it possible anywhere get soucers/examples? Thnx....
kazbekovich
Offline Send Email
Nov 23, 2003
4:35 pm
738
Hi! I have bootloader for atmega128 and I develop AvrX code. The bootloader itself is not avrx code and I think there is no good reason for that anyway....
lokkihybridi
Offline Send Email
Nov 24, 2003
5:54 am
740
The context pointer is just stack pointer for the task after the context was saved. It should change depending upon where the program was when a task switch...
Larry Barello
lbarello
Offline Send Email
Nov 28, 2003
3:53 pm
741
Hi I don't know how to connect AD7890 to AT90S8515 with spi protocol exactly. MASTER : AT90S8515 SLAVE : AD7890 (MOSI ------------------------>...
k1vafi
Offline Send Email
Dec 4, 2003
6:04 am
742
avrx£¬ I hanve modified the makefile for AVRX project use GCC-AVR. Referring to the makefike sample of new version WINAVR,I added new features to the...

wu_shuangli
Offline Send Email
Dec 9, 2003
2:33 pm
743
I've installed the latest WinAVR and AVRX 2.6e already. The environment variable AVRX had been set correctly. When I try to make avrx library by typing make...
lazyfox1997
Offline Send Email
Dec 10, 2003
2:06 pm
744
avrx£¬ everyone fortunatly ,I can use AVRX on mega16 now. I modifoed the file serialio.s.Added the following lines: #if defined(UBRR0L) # define UBRR UBRR0L ...

wu_shuangli
Offline Send Email
Dec 11, 2003
3:31 pm
745
it works also at ATMega8535.... I think .. it applies to mega8515 too.... I will not AT90S8535 compatable mode anymore. :p Thanks~~ (sorry.. my terrible...
Joo Young-jin
wizelec
Offline Send Email
Jan 2, 2004
8:46 pm
746
I am getting some very strange behaviour when I use local variables within a task. I am using WinAVR (latest release). Once I move them to global then all is...
shane_bolton
Offline Send Email
Jan 5, 2004
5:21 am
747
The original GCC port of AvrX used the "naked" attribute for the task. An unfortunate side effect is that the frame pointer (to stuff on the stack) isn't...
Larry Barello
lbarello
Offline Send Email
Jan 5, 2004
5:45 am
748
See: http://groups.yahoo.com/group/avrx/message/46 ... From: shane_bolton [mailto:shane.bolton@...] I am getting some very strange behaviour when I use...
Larry Barello
lbarello
Offline Send Email
Jan 5, 2004
5:49 am
749
Thanks Larry - that fixed it, but more importantly - I now understand why. Rgds, Shane ... variables ... variables...
shane_bolton
Offline Send Email
Jan 6, 2004
2:16 am
750
Sorry for this dumb question, but I don't know anything about the assembler. I can build avrx for GCC without a problem. I now notice that there is a...
shane_bolton
Offline Send Email
Jan 6, 2004
2:44 am
751
Understanding why, or at least having a model that allows you to fix stuff on your own is what I strive for. Well, I must say, no one ever has used the...
Larry Barello
lbarello
Offline Send Email
Jan 6, 2004
3:49 am
752
Thanks again Larry, That worked without any problem. I can't believe no one else is using TaskYield() - very clean and elegant solution to a cpu intensive...
shane_bolton
Offline Send Email
Jan 6, 2004
4:44 am
753
Hello, I am new to AVRX. I succeed to build the avrx.r90 library for IAR. But when I try to build the examples I get the following error: Error[e6]: Program...
Vasil Minkov
tovasko
Offline Send Email
Jan 16, 2004
6:09 pm
754
Hi all, I was playing around with the MessageTimersAlt.c example and set the timer delay to 60 seconds i.e. AvrXStartTimerMessage(&Timer, 60000, &MyQueue)....
gordonrice@...
gordon918
Offline Send Email
Jan 19, 2004
1:11 am
755
The timers are unsigned ints so they are good to ~65000 counts. ... From: gordonrice Hi all, I was playing around with the MessageTimersAlt.c example and set...
Larry Barello
lbarello
Offline Send Email
Jan 19, 2004
1:23 am
756
The timer value is 'unsigned' meaning 16 bit therefore the maximum value is 65535 - about 65.5 seconds. Regards, Shane ... the timer delay to 60 seconds i.e....
shane_bolton
Offline Send Email
Jan 19, 2004
1:25 am
Messages 726 - 756 of 1835   Oldest  |  < Older  |  Newer >  |  Newest
Advanced
Add to My Yahoo!      XML What's This?

Copyright © 2007 Yahoo! Inc. All rights reserved.
Privacy Policy - Terms of Service - Guidelines - Help