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 643 - 672 of 1912   Oldest  |  < Older  |  Newer >  |  Newest
Messages: Simplify | Expand   (Group by Topic) Author Sort by Date ^
643
you need to look at your memory map (*.map) and see how much ram you are using. 6 timer blocks takes up 36 bytes of ram. Not very much. Each task takes at...
Larry Barello
lbarello
Offline Send Email
Jun 1, 2003
2:42 pm
644
I have seen that the interrupt vectors are defined as PUBWEAK in avrx_iar_vect.s (for use with IAR compiler), but I don't understand what it means. Is there...
pippopappopippopappo
pippopappopi...
Offline Send Email
Jun 10, 2003
7:00 am
645
Pub weak are symbols that can be overriden by other symbols. So in the case of the interrupt vector table if you don't define an ISR, the pub weak will be...
Larry Barello
lbarello
Offline Send Email
Jun 10, 2003
1:55 pm
646
Many thanks, Larry But why this is not explained in the IAR manual? Pippo ... the case of the ... will be used instead. ... user doesn't have to...
pippopappopippopappo
pippopappopi...
Offline Send Email
Jun 11, 2003
7:17 am
647
Hi Pippo, IAR actually does explain this in the Manual Corrections and Updates ("manuals.htm" in doc directory). I had the same question when I was working on...
Krepelka, Steve
steve_krepelka
Offline Send Email
Jun 11, 2003
12:25 pm
648
You have been very helpful, Steve. Thanks Pippo ... was ... to be ... by XLINK. ... with one or ... XLINK will ... it must ... part. ... that ... the ... ...
pippopappopippopappo
pippopappopi...
Offline Send Email
Jun 11, 2003
2:31 pm
649
Hello everybody, I'm having some problems with my AVR90s8535. I try to run four tasks and the "manual" said 3-4 task should work fine. It won't work. Am I out...
gert_johnsen
Offline Send Email
Jun 19, 2003
2:18 pm
650
Well, the difficulty with true multi-tasking systems is precisely that: Why doesn't it work? You probably have a stack issue, or, priorities set wrong or...
Larry Barello
lbarello
Offline Send Email
Jun 19, 2003
2:45 pm
651
The March issue of Circuit Cellar had an article on useing rotary encoders as input devices ...
Christopher X. Candreva
ccandreva
Offline Send Email
Jun 19, 2003
9:50 pm
652
hi Now I am studying the avrx kernel downloaded from Mr. larry barello's website.I don't understand where the kernel set the SREG to interrupt when it is run....
qianqiantree
Offline Send Email
Jun 20, 2003
6:36 am
653
The routine "Epilog" does an "reti" to jump to the next active task. That sets the 'I' flag. ... From: "qianqiantree" <qianqiantree@...>...
Larry Barello
lbarello
Offline Send Email
Jun 20, 2003
1:12 pm
654
Hi, I'm working on a "proper" message queue, where one or more producer processes put messages into a queue, and a single consumer process gets the messages as...
Neil Johnson
nej22uk
Offline Send Email
Jun 20, 2003
11:20 pm
655
Woof! I think the existing message queue supports what you want because tasks don't *have* to wait for their message to be acknowledged. You would need some...
Larry Barello
lbarello
Offline Send Email
Jun 20, 2003
11:43 pm
656
... tasks don't *have* to ... sort of mechanism to ... I had assumed that this was the way the message queues worked but it's nice to have it confirmed. I'm...
dlh2612000
Offline Send Email
Jun 21, 2003
2:16 pm
657
Acknowledging a message (setting a semaphore) is very quick. The only time cycles are consumed is if you block waiting for that acknowledgment. Even...
Larry Barello
lbarello
Offline Send Email
Jun 21, 2003
2:32 pm
658
Malloc can be dragged into AvrX unawares by new additions to avr-libc. avr-libc has added standard IO facilities (can now add #include <stdio.h>). However...
jheenanm
Offline Send Email
Jun 22, 2003
7:35 pm
659
Has anyone managed to use AvrX with C++? I tried to this with AvrX 2.6.e with avr-gcc 3.3, but was not successful. I did manage to achieve a clean...
ss_4344
Offline Send Email
Jun 23, 2003
4:26 am
660
Larry, ... Which sounds pretty much like what I have anyway, excepting needing more memory---my queue elements are 3 bytes each, so an n-length queue needs ...
Neil Johnson
nej22uk
Offline Send Email
Jun 23, 2003
12:32 pm
661
Hi everyone, I'm having some problem with BasicTest3 and IAR Embedded Workbench 2.31C. Fisrt question. These are some of the first lines of the code (in...
pippopappopippopappo
pippopappopi...
Offline Send Email
Jun 25, 2003
12:29 pm
662
Hi everyone I'm having some problem with starting cancelling timers. ... TimerControlBlock timer1; AvrXStartTimer(&timer1, 4); AvrXCancelTimer(&timer1); ...
pippopappopippopappo
pippopappopi...
Offline Send Email
Jul 4, 2003
10:41 am
663
I reviewed BasicTest3.c which exercises the timer subsystem and your particular test case (queueing/cancelling/queueing a single time on the queue) is not...
Larry Barello
lbarello
Offline Send Email
Jul 4, 2003
2:09 pm
664
Hi Larry I post only these lines because my code is simply an exercise that start from BasicTest3.c. I noted that BasicTest3.c works in the same manner when...
pippopappopippopappo
pippopappopi...
Offline Send Email
Jul 4, 2003
3:22 pm
665
Wow, it must have been a year since I last compiled and ran the test cases. Amazingly enough they did compile and run. Pippo: I am not seeing the problem you...
Larry Barello
lbarello
Offline Send Email
Jul 4, 2003
3:57 pm
666
Hi Larry Currently I'm in holiday. When I come back at home I'll send you everything Bye Pippo ... test cases. Amazingly ... works for me under GCC. ... if it...
pippopappopippopappo
pippopappopi...
Offline Send Email
Jul 8, 2003
9:29 am
667
Hi again Larry, I come back from holiday 8(( I tried BasicTest3 under GCC and it works fine: therefore the problem is IAR related. I remember that I modified...
pippopappopippopappo
pippopappopi...
Offline Send Email
Jul 14, 2003
1:23 pm
668
Yes, the file AvrX.inc needs to agree with avrx-ctoasm.inc The former defines offsets into the stack layout of the saved context and if you change registers...
Larry Barello
lbarello
Offline Send Email
Jul 14, 2003
1:58 pm
669
Is it ok to call AvrXCancelTimer from within an interrupt timer. If not, how do I do it??? Seems to work most of the time, but eventually I lose a task that...
Jean Cyr
jeanmcyr
Offline Send Email
Jul 15, 2003
5:05 am
670
Although CancelTimer was never intended to be called from an interrupt routine it should work. There may be some subtle race condition that occurs inside timer...
Larry Barello
lbarello
Offline Send Email
Jul 15, 2003
5:53 am
671
Hi Larry I found the problem: in the newer version of IAR the calling convetions are changed, but there is an option to tell the compiler to use the previous...
pippopappopippopappo
pippopappopi...
Offline Send Email
Jul 15, 2003
8:35 am
672
Yes, the 'lost' task is actually hung on a timer that never seems to expire. This all came about when the need arose to have an interrupt driven serial IO...
Jean Cyr
jeanmcyr
Offline Send Email
Jul 15, 2003
12:58 pm
Messages 643 - 672 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