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...
Message search is now enhanced, find messages faster. Take it for a spin.

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 745 - 774 of 1912   Oldest  |  < Older  |  Newer >  |  Newest
Messages: Simplify | Expand   (Group by Topic) Author Sort by Date ^
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
757
Hi! Could someone please explain why I get all these warnings? A cof-file is generated but when I try to open it in AVRStudio 3.56 I get the message "Error in...
e96maot
Offline Send Email
Jan 19, 2004
10:39 pm
758
... No, float version of printf() calls the malloc() function but it doesn't work in AvrX therads. There is a few solutions to make it works. Look at...
an2an_1970
Offline Send Email
Jan 22, 2004
11:34 am
759
Thanks. I'll have to look it up again. Take care,...
Stephane Gauthier
stephane641
Offline Send Email
Jan 22, 2004
10:52 pm
760
This is from a recent message in the avr-gcc-list. It is a way to work around the printf problem: Just don't use "printf" (or make your own) and use...
Larry Barello
lbarello
Offline Send Email
Jan 22, 2004
11:20 pm
761
Thanks Larry....
Stephane Gauthier
stephane641
Offline Send Email
Jan 22, 2004
11:23 pm
762
hey - how 'bout crediting the author! ... From: Larry Barello [mailto:yahoo@...] Sent: Thursday, January 22, 2004 3:20 PM To: avrx@yahoogroups.com ...
stevech
stevech11
Offline Send Email
Jan 23, 2004
4:49 am
763
Mea culpa, mea maximu culpa: I was in a hurry... ... From: stevech [mailto:stevech@...] hey - how 'bout crediting the author! ... From: Larry Barello...
Larry Barello
lbarello
Offline Send Email
Jan 23, 2004
5:01 am
764
So there's an actual problem with printf or just malloc()? I'm a bit out of the loop as I haven't worked on it in a while. What's the problem more...
stephane641@...
stephane641
Offline Send Email
Jan 23, 2004
2:45 pm
765
It has been a long time, but. Malloc should work as long as only one task is accessing it. if more than one, then you need to protect it with a semaphore (or...
Larry Barello
lbarello
Offline Send Email
Jan 23, 2004
3:37 pm
766
Hi Larry, I've got a question for you: I've been using timer messages and message queues as a way to wait for some event, but with a timeout if the event ...
Brian Cuthie
codejunky2000
Offline Send Email
Jan 23, 2004
3:43 pm
767
Sure, become famous. The message queue can be thought of as a semaphore with attitude. Each message conveys something. So, an interrupt handler completing can...
Larry Barello
lbarello
Offline Send Email
Jan 23, 2004
4:20 pm
768
Ah, this is a great idea! Thanks Larry! -brian _____ From: Larry Barello [mailto:yahoo@...] Sent: Friday, January 23, 2004 11:19 AM To:...
Brian Cuthie
codejunky2000
Offline Send Email
Jan 23, 2004
4:54 pm
769
Yeah, I guess a simple wrapper function for malloc with a semaphore should do. Kind of like I would do with my I2C or Serial library right? Thanks, ... 1...
stephane641@...
stephane641
Offline Send Email
Jan 23, 2004
7:53 pm
770
Hi, ... Using printf as it is provided by avrlibc seems often to be a problem with our used architectures. In a project (which is not using avrx) I ported one ...
Dirk Jahnke
dirk_nbahn
Offline Send Email
Jan 24, 2004
1:50 pm
771
So the idea of using AvrXCancelTimer() to signal something seems to work great until I get a lot of interrupts. In one application I have an interrupt handler...
Brian Cuthie
codejunky2000
Offline Send Email
Jan 25, 2004
8:40 pm
772
Clearly I have been away from AvrX for too long. AvrXCancelTimer was never written to be called from an interrupt handler. It just blindly modifies the timer...
Larry Barello
lbarello
Offline Send Email
Jan 25, 2004
10:14 pm
773
Ok, great. I'll take a few pokes at it. If you come up with anything please pass it along. Might be a few days before I get back into the lab. I'm pretty sure...
Brian Cuthie
codejunky2000
Offline Send Email
Jan 25, 2004
11:20 pm
774
BTW, I assume you mean to take out the first EndCriticalSection and the second BeginCriticalSection, effectively placing the whole routine in a critical...
Brian Cuthie
codejunky2000
Offline Send Email
Jan 25, 2004
11:23 pm
Messages 745 - 774 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