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 1425 - 1454 of 1912   Oldest  |  < Older  |  Newer >  |  Newest
Messages: Simplify | Expand   (Group by Topic) Author Sort by Date ^
1425
Hello, I am a newbie of Avrx. Recently I am working on ATmega8 and trying to let Avrx run on it. But I failed. Who can give me some hints about Avrx on...
qiwenmin
Offline Send Email
Oct 6, 2006
2:30 am
1426
Hi, Wenmin ... Hmm, it's difficult to give you any hint when you don't tell what you've tried and where and what failed... Error messages, Effects, Debug...
Clemens Koller
clemens.koller@...
Send Email
Oct 6, 2006
2:23 pm
1427
... twice ... Larry? ... I use the ICECube JTAG clone from www.ecrostech.com. At $40 I feel it's a great deal. Once I set the fuse bits on the MavricII...
jaydmdigital
Offline Send Email
Oct 15, 2006
6:01 pm
1428
I have done a few autonomous robotics programming projects but never with a RTOS. There were always linear and task based. I am interested in AVRX to give me...
jaydmdigital
Offline Send Email
Oct 15, 2006
8:26 pm
1429
Just a quick update: Once I got the makefile worked out I was able to add my C code with functions for sending data to an I2C graphic LCD, interrupt code for ...
jaydmdigital
Offline Send Email
Oct 15, 2006
9:43 pm
1430
i use the avrx2.6f After add "#define SIGNALSTEPSUPPORT" statement in avrx.inc,i compiled the avrx with winavr050214 and successed. then i compile the...
jsjsfm
Offline Send Email
Oct 16, 2006
5:49 pm
1431
... Can't help with the second. Tickrate I believe is the number of times per second the AvrXTimerHandler(); is called. Knowing this value lets you use the...
Christopher X. Candreva
ccandreva
Offline Send Email
Oct 17, 2006
2:33 am
1432
Hello! My experience with porting AvrX to ATMega8 is as fallow: - it works fine with timers, messages, serialio, - simulation in AVR Studio environment fails....
rafal.lojek
Offline Send Email
Oct 17, 2006
8:03 pm
1433
WinAvr (windows distribution of the compiler) contains documentation and a FAQ for LibC which, among many other things, describes how to write assembly ...
larry barello
lbarello
Offline Send Email
Oct 18, 2006
3:21 pm
1434
Hi Larry, ... http://www.nongnu.org/avr-libc/user-manual/FAQ.html#faq_reg_usage -- Dave Hylands Vancouver, BC, Canada http://www.DaveHylands.com/...
Dave Hylands
dhylands_99
Offline Send Email
Oct 18, 2006
5:07 pm
1435
Hello, I made a avrx library(avrx.a) from the avrx 3.6e for ATmega16 package. then I got avrx.a file. but I can't use it at AVRstudio. I compiled avrx.a with...
dldpqls86
Offline Send Email
Oct 22, 2006
1:53 am
1436
Hi, I renamed avrx.a to libavrx.a. Then in AvrStudio, add avrx as the library in the project properties. Regards, Qi Wenmin...
qiwenmin
Offline Send Email
Oct 22, 2006
7:39 am
1437
Hi All, Kindly help me in this confusing problem. in avrx.h file function are declared in a strange syntax i never seen before, it is declared like this ...
ebn_taimia
Offline Send Email
Oct 29, 2006
3:01 pm
1438
Hi, ... So, for function prototypes, there is no requirement to pass in a name. Adding it is purely optional. i.e. void foo( int ); void foo( int something ); ...
Dave Hylands
dhylands_99
Offline Send Email
Oct 29, 2006
4:51 pm
1439
Hello! Fist of all,i'm sorry to my poor english . I'm a newbie,who use the AvrX kernel.I want to know that,How to compile AvrX kernel at the Winavr2005...
tao_avr
Offline Send Email
Oct 31, 2006
3:32 pm
1440
does anyone have code to drive a futaba servo? i have experience with AVR's but not with AvrX or any other RTOS. working code or a step by step of how to set...
jl_delagarza
Offline Send Email
Nov 7, 2006
6:15 am
1441
This isn't an RTOS problem. There are many ways to do what you want to do. The simplest would be a routine that sets a pin high, spins for a variable amount...
larry barello
lbarello
Offline Send Email
Nov 7, 2006
6:46 am
1442
I plan to expand the Fifo routines to accomodate arrays such that I can for example effectively have a buffer of CAN data packets. In reading the Fifo code, I...
darkdragonnascar
darkdragonna...
Offline Send Email
Nov 12, 2006
12:37 am
1443
Hi, ... The compiler doesn't do bounds checking. As long as the buffer is allocated large enough, then everything works. More recent versions of the compiler...
Dave Hylands
dhylands_99
Offline Send Email
Nov 12, 2006
2:08 am
1444
A-ha! thanks!...
darkdragonnascar
darkdragonna...
Offline Send Email
Nov 12, 2006
9:33 am
1445
... I would say you (the OP, sorry I'm replying to the later message) are correct -- the buf[1] is wrong. Where did this come from ? This looks close to...
Christopher X. Candreva
ccandreva
Offline Send Email
Nov 12, 2006
3:25 pm
1446
It comes from the 2.6g AVRX release from the files area. Actually, speaking of the BuffSerial routines, I noticed that there is a context switch for each byte...
darkdragonnascar
darkdragonna...
Offline Send Email
Nov 12, 2006
4:05 pm
1447
... Take a look at it again, I don't think it does a context switch for each byte sent (or received for that matter). It is setting the semiphore for each byte...
Christopher X. Candreva
ccandreva
Offline Send Email
Nov 12, 2006
4:49 pm
1448
From the interrupt routine, there is a Prolog/Epilog section around sending one byte: ...but I could be missing something....maybe if the interrupt gets...
darkdragonnascar
darkdragonna...
Offline Send Email
Nov 12, 2006
6:18 pm
1449
... It could be inturrpted by anything. I tend to put them in my default however, I'll have to defer to someone who knows more than I (Larry ?) as to if they...
Christopher X. Candreva
ccandreva
Offline Send Email
Nov 13, 2006
2:10 am
1450
Prolog and epilog are safe with regard to re-entering. You are right, however, if the interrupt rate is greater than what can be processed, the kernel stack...
larry barello
lbarello
Offline Send Email
Nov 13, 2006
3:45 am
1451
I want to know that,How is the time of context Switch in the AVRX? is a constant?...
tao_avr
Offline Send Email
Nov 14, 2006
7:44 am
1452
I haven't counted the cycles for a long time, but switching from task to kernel is about 150 cycles and switching back to a task is around 100 cycles. It is...
larry barello
lbarello
Offline Send Email
Nov 14, 2006
5:23 pm
1453
...any chance you could post those up in the files section? Otherwise, could you send me a copy? I'd like to use that method to guarantee that I don't miss...
darkdragonnascar
darkdragonna...
Offline Send Email
Nov 14, 2006
9:14 pm
1454
There isn't much to post. Just take Epilog/Prologue and insert a few lines of assembly to disable/enable the AvrX interrupts (those you assign) instead of a...
larry barello
lbarello
Offline Send Email
Nov 14, 2006
9:40 pm
Messages 1425 - 1454 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