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 your group to be featured on the Yahoo! Groups website? 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 860 - 889 of 1912   Oldest  |  < Older  |  Newer >  |  Newest
Messages: Simplify | Expand   (Group by Topic) Author Sort by Date ^
860
I'm not really sure what this is related to. I've been away from my bot for a year -- I thought it was new baby related, but now I relize I had gotten ...
Christopher X. Candreva
ccandreva
Offline Send Email
Jun 3, 2004
2:44 am
861
I'm trying to see what the latest version of gcc and/or avr-libc are that would work with avrx. Larry says he is useing WinAVR 3.2, which had ...
Christopher X. Candreva
ccandreva
Offline Send Email
Jun 4, 2004
2:14 am
862
Hi, I'm using the latest WinAVR (20040404) without any problems....
Stephane Gauthier
stephane641
Offline Send Email
Jun 4, 2004
3:38 am
863
Hi, I was wondering what the easiest way of testing real-time performance in AvrX? For starters, I thought about simply toggling a bit in the IDLE task so I...
stephane641
Offline Send Email
Jun 4, 2004
10:48 pm
864
You can use registers all you want, just make sure that the interrupts are off while your are using them. Twiddling an output bit shouldn't require any...
Larry Barello
lbarello
Offline Send Email
Jun 4, 2004
11:55 pm
865
Looks good Larry. I never realised you already had that in there. It's just a matter of defining DEBUG. (the code is #ifdef'ed). At first I wanted to "toggle"...
Stephane Gauthier
stephane641
Offline Send Email
Jun 5, 2004
1:21 pm
866
Thanks to everyone who replied. After much testing, the problem appears to actually be that the crystal socket went bad on my STK-500 It was just incredibly...
Christopher X. Candreva
ccandreva
Offline Send Email
Jun 6, 2004
7:01 pm
867
How do you write programs to run in avrx? in C, ASM, etc? are they then compiled and loaded into the AVR?...
Tim Dale
tdale4
Offline Send Email
Jun 8, 2004
12:51 pm
868
Curious...i'm starting out in robotics (done quite a bit of assy coding for Tiny12 parts and am working with the Mega8 right now) and have been reading about...
Know_Nothings
Offline Send Email
Jun 8, 2004
12:51 pm
869
Get the WinAvr GCC C compiler (www.avrfreaks.net), look at the AvrX sample code & test cases. Modify them, or write from scratch, your own using a text...
Larry Barello
lbarello
Offline Send Email
Jun 8, 2004
2:07 pm
870
... For a 'practical' introduction, I found your Dilbert2 project to be very helpfull. The Examples/test cases are abstract. I could grasp the concepts better...
Christopher X. Candreva
ccandreva
Offline Send Email
Jun 8, 2004
2:19 pm
871
Personally I use a mega128 for the main "brain" which interfaces to a bunch of lowly mega8 via an I2C (TWI) bus. It's unfortunate Atmel doesn't have a smaller...
Stephane Gauthier
stephane641
Offline Send Email
Jun 9, 2004
12:00 am
872
That is a good idea, I should update Dilbert II to the latest GCC or publish the balancing robot code as tutorial's on how to structure a working application. ...
Larry Barello
lbarello
Offline Send Email
Jun 9, 2004
1:34 am
873
What about the tiny26? ... From: Stephane Gauthier Personally I use a mega128 for the main "brain" which interfaces to a bunch of lowly mega8 via an I2C (TWI)...
Larry Barello
lbarello
Offline Send Email
Jun 9, 2004
1:34 am
874
AvrX was originally written to run on the at90s2313 with only 128 bytes of memory. The current GCC version needs at least 512 bytes of SRAM to be useful...
Larry Barello
lbarello
Offline Send Email
Jun 9, 2004
1:36 am
875
Yeah, that's on my TODO list. I know it has a USI interface which is basic hardware for implementing SPI, I2C and UART using a bit of software. It's much...
Stephane Gauthier
stephane641
Offline Send Email
Jun 9, 2004
1:51 am
876
Google is your friend: there are tiny26 master & slave I2C routines already written. It looks like mostly setting up the configuration and then after that it...
Larry Barello
lbarello
Offline Send Email
Jun 9, 2004
1:54 am
877
I keep looking at the Tiny26 but the package size is the same (MELF) or larger (SO-20) compared to the Mega8 (TQFP) for a lot less of everything. Digikey has...
Chris Baron
jojo5552000
Offline Send Email
Jun 9, 2004
6:15 pm
878
Nice. I remember seeing an application note about it on AvrFreaks but never got around to looking into more. Thanks for the tip,...
Stephane Gauthier
stephane641
Offline Send Email
Jun 10, 2004
12:32 am
879
Hey all, Looking through the AvrX examples I starte making some conclusions about the code. I was hopeing somone could confirm if I'm right, or explain why I'm...
christroutner
Offline Send Email
Jun 10, 2004
1:45 am
880
... This is why I said look at the Dilbert2 code, from www.barello.net ... In hardware.h there are comments that explain setting the tickrate and macros that...
Christopher X. Candreva
ccandreva
Offline Send Email
Jun 10, 2004
1:47 am
881
1 & 2: Yes. There are several reasons why you might want to separate a timer function from blocking. For example, you could set up two semaphores: one on a...
Larry Barello
lbarello
Offline Send Email
Jun 10, 2004
1:51 am
882
While surfing TI.com, I found an interesting app note that decribed extending the spi bus beyond the 18cm maximum. In essence, you put an rs-485 serial bus ...
mpdickens
md30022
Offline Send Email
Jun 10, 2004
12:17 pm
883
Larry: Actually, I just tried searching for it and aside for a Bascom version of it I didn't find much so I was wondering if you could post the URL for this...
stephane641
Offline Send Email
Jun 10, 2004
3:12 pm
884
Actually, I don't know if it's the same site or not but I found it as a new entry in the AvrFreaks.net academy section. (april 04). Thanks, ... internal PLL ...
stephane641
Offline Send Email
Jun 10, 2004
6:09 pm
885
Hi, all (and Larry too!) I think I have found a nasty little bug having to do with the naked task functions defined by AvrX, and the way AVR-GCC handles local ...
Ed Pugh
pugh_ed
Offline Send Email
Jun 17, 2004
12:34 am
886
This is a normal result of the "naked". Since a local frame is *not* set up, forcing a variable (lclVariable) onto the frame by taking it's address will fail....
Larry Barello
lbarello
Offline Send Email
Jun 17, 2004
12:54 am
887
Hi, Larry. I figured I would have to do something like making my "addressable" variables static. What does the "noreturn" attribute do? I expect it defines a ...
Ed Pugh
pugh_ed
Offline Send Email
Jun 17, 2004
1:14 am
888
Oh wait! I missed the significance of your last statement. So, I can call a subroutine from the task, and do my stuff from there, right? The "addressable"...
Ed Pugh
pugh_ed
Offline Send Email
Jun 17, 2004
1:23 am
889
NoReturn doesn't save registers, but it does create a stack frame. I don't think it has a return either, but the few extra instructions are small potatoes in...
Larry Barello
lbarello
Offline Send Email
Jun 17, 2004
1:54 am
Messages 860 - 889 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