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 1685 - 1714 of 1912   Oldest  |  < Older  |  Newer >  |  Newest
Messages: Simplify | Expand   (Group by Topic) Author Sort by Date ^
1685
I noticed two _exp.S file under my avrx. They are not used by makefile. I suppose there is some expriment features in it. Who can give more info about that? ...
csujun
Offline Send Email
Jan 9, 2008
10:22 pm
1686
Hello, I am trying to figure out if the following two snippets of code are valid and equivalent: /* Snippet 1 */ ISR(any_vect) { AvrXSendMessage(&foo, &bar); }...
dwhall256
Offline Send Email
Jan 24, 2008
12:33 am
1687
Correction: The same questions stand, but with this change to Snippet 1: AVRX_SIGINT(any_vect) { !!Dean ... "reti"...
dwhall256
Offline Send Email
Jan 24, 2008
9:21 pm
1688
All, I am using AvrX on a project that is processing a high-frequency communication protocol using an input capture interrupt. The pulses on this network...
jonegold2007
Offline Send Email
Jan 28, 2008
3:28 am
1689
What is your cpu clock speed? 12us is pretty fast. The handler you list, below, will have a minimum 250 cycle latency - however you can enable interrupts...
Larry Barello
lbarello
Offline Send Email
Jan 28, 2008
8:23 pm
1690
Thanks for the response. CPU clock speed is 8MHz, which is maximum for the ATmega64 device we are using. The minimum pulse I have to measure is 20us. I have 4 ...
Jonathan Goldberg
jonegold2007
Offline Send Email
Jan 28, 2008
8:47 pm
1691
if function A() is a task with a 128 byte stack, and just a few variables, and it calls B() which has perhaps 20 bytes of variables, one of which is an AVRX...
stevech11
Offline Send Email
Jan 30, 2008
7:45 am
1692
You just described your task trouble in enough detail that you explained the problem and its cause... if the TCB is an automatic variable in func B(), it can...
Dean Hall
dwhall256
Offline Send Email
Jan 30, 2008
1:46 pm
1693
Thanks for the thoughtful responses... On the TCB as an automatic - I think I'm OK because the function declaring the TCB as an automatic is coded to not...
stevech11
Offline Send Email
Jan 30, 2008
6:44 pm
1694
One of the later changes to AvrX was to make the prolog a "no return" vs. "naked". The state save/restore is handled in IntProlog/Epilog. When "naked" was...
Larry Barello
lbarello
Offline Send Email
Jan 30, 2008
8:06 pm
1695
Hi all, I have some trouble using AVRX on an ATMega2561. I've been using AVRX for a few years on an ATMega32 und it works very well. Now I want to use this...
artur.pundsack
Offline Send Email
Feb 4, 2008
3:27 pm
1696
Have you taught AvrX about the two words return address pushed on the stack? ... From: avrx@yahoogroups.com [mailto:avrx@yahoogroups.com] On Behalf Of ...
larry barello
lbarello
Offline Send Email
Feb 4, 2008
4:32 pm
1697
... This was also my thought and this was the reason why I tried to use the 'C' version of AVRX where the right width of the return address should be choosen...
artur.pundsack
Offline Send Email
Feb 5, 2008
6:38 am
1698
There should be four bytes of ret address, not two for machines > 128kb of flash. You need to adjust the task structure and add extra ldd and std instructions...
larry barello
lbarello
Offline Send Email
Feb 5, 2008
11:39 pm
1699
Considering the changes in winavr syntax for interrupt handlers, is this the correct interrupt declaration for the external interrupt #4 (mega128) ? ...
stevech11
Offline Send Email
Feb 6, 2008
3:17 am
1700
Use INT4_vect Read more here: http://www.nongnu.org/avr-libc/user-manual/group__avr__interrupts.html !!Dean...
Dean Hall
dwhall256
Offline Send Email
Feb 6, 2008
3:27 am
1701
... 128kb of The return address is stored in the stack with 3 bytes and this is the reason why the offsets for reading the return address are wrong. I will try...
artur.pundsack
Offline Send Email
Feb 6, 2008
6:30 am
1702
  hi , i am new to avr ,i am trying to control the RGB led throug the PWM signals generated from timers ,i am using timer1 and timer2 for this , but i am...
ravi yakkundi
ravi_yakkundi
Offline Send Email
Feb 14, 2008
3:39 pm
1703
Hi All, I have done porting uIP TCP/IP stack by Adam Dunkel using AvrX. You can get it from "Files" of our yahoogroups. and more information about uIP TCP/IP...
Siswanto
gumbreg
Offline Send Email
Feb 15, 2008
5:24 am
1704
Great work! Can you give some idea of the code (ROM) and data (RAM) sizes needed by your port? Thanks, Neil ... -- http://www.njohnson.co.uk ... Email sent...
neil.johnson97@...
nej22uk
Offline Send Email
Feb 15, 2008
11:39 am
1705
I've always felt these two projects would be a good match. I've never had a need for ethernet in my projects, so I haven't pursued it, but I've always thought...
Dean Hall
dwhall256
Offline Send Email
Feb 15, 2008
3:10 pm
1706
Dear neil, Here is messages appear while compile process, I don't ROM and RAM required, but the hex file size is 61,2 KB (62.756 bytes). Build started...
Siswanto
gumbreg
Offline Send Email
Feb 18, 2008
2:34 am
1707
Suggestions please... task A needs to sleep, and wait for either (1) a wake-up issued by an interrupt routine or (2) a timeout. I didn't see a timed...
stevech11
Offline Send Email
Feb 21, 2008
11:44 pm
1708
I've used AvrXStartTimerMessage/AvrXWaitMessage and it works nicely. I followed the example from Examples/MessageTimers.c, but my message originated from an...
Dean Hall
dwhall256
Offline Send Email
Feb 22, 2008
12:13 am
1709
AvrX fans interested in TCP/IP networking and web servers I posted info on avrfreaks.net. ...
stevech11
Offline Send Email
Mar 11, 2008
5:03 am
1710
My AvrX application that gets the time via the Internet from a NIST server. It uses this to set some date/time variables. This happens at startup. In the 1000...
stevech11
Offline Send Email
Mar 18, 2008
3:52 am
1711
stevech11 sez, ... Um... first off 4-5 seconds every 24 hours is like 45ppm. A craptacular xtal might be 50ppm. If you have a frequency counter you can set...
Pink Boy
dasfoo
Offline Send Email
Mar 18, 2008
7:04 am
1712
Adding the init value to the counter works as well as CTC as long as you don't miss a complete rollover cycle. Even CTC fails if you completely miss the...
larry barello
lbarello
Offline Send Email
Mar 18, 2008
2:38 pm
1713
Ah so, I screwed up the math, eh, on 45ppm. Are the 32768Hz crystals in watches, etc, trimmed somehow? ... completely miss ... hasn't been ... Of Pink...
stevech11
Offline Send Email
Mar 18, 2008
7:01 pm
1714
stevech11 sez, ... One other thing to watch out for is the load capacitors. They may well be wrong. Too much and the xtal runs slow, not enough to bother a...
Pink Boy
dasfoo
Offline Send Email
Mar 19, 2008
1:52 am
Messages 1685 - 1714 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