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...
Real people. Real stories. See how Yahoo! Groups impacts members worldwide.

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 983 - 1012 of 1912   Oldest  |  < Older  |  Newer >  |  Newest
Messages: Simplify | Expand   (Group by Topic) Author Sort by Date ^
983
Hi, Can You tell me how to use the debug functioh with the task of monitor ? How to try it step by step ? Thanks all. David...
sunbird606
Online Now Send Email
Oct 2, 2004
8:00 pm
984
Hello, has somebody already experience with avrX on attiny26(2k flash, 128 Byte RAM)? i wanted to let run two tasks. Is there a chance or is the experience...
allymann01
Offline Send Email
Oct 5, 2004
2:04 pm
985
Hi, has anybody experience if it is poosible to use avrX in minimum version(e.g. only two tasks) in a useful way on Tiny26(2k flash, 128 byte RAM)? If have...
allymann01
Offline Send Email
Oct 5, 2004
2:04 pm
986
I originally developed avrx on the 2313 (128 bytes of ram). You need the assembly version (2.3) off my website and you need to be really careful about...
Larry Barello
lbarello
Offline Send Email
Oct 5, 2004
2:27 pm
987
Thanx, i think i will proceed with atmega8. It has some Pins more and needs a little bit more power, but i like avrX. BR, Alois ... Date: Tue, 5 Oct 2004...
AM.LBACH@...
allymann01
Offline Send Email
Oct 6, 2004
6:35 am
988
Hi, (sorry, newby question!) ... Don't have problems with ATMega323, ATMega64 or ATMega128, but can't do it with ATMega32. What can I do? Thanks in advance!...
laufquen
Offline Send Email
Oct 20, 2004
12:29 pm
989
Hi, I had this problem when I tried to compile on the mega64 (I am using gcc on linux) and solved it by changing the OS source code. The mega64 and possibly ...
Robin Gilham
rgilhamuk
Offline Send Email
Oct 22, 2004
3:49 am
990
This shouldn't be a problem with GCC 3.1 and above: use standard C constructs and the compiler will take care of the details. With AvrX serialio: that was a...
Larry Barello
lbarello
Offline Send Email
Oct 23, 2004
1:43 am
991
Hi, I'm new to avrx and have been having fun with WinAVR. Currently I'm stuck with an error message I don't understand: ===================================== ...
Jeffrey Engel
jengeltx
Offline Send Email
Nov 4, 2004
9:38 pm
992
Which version of AvrX are you using? The older ones used something called "avrobj" as the output file format - so you could debug in Astudio. Now there is...
Larry Barello
lbarello
Offline Send Email
Nov 5, 2004
3:18 pm
993
Larry, You're probably right. The WinAVR / AvrX on another computer compiles correctly. I'll start over with the latest version. Thanks! Jeff Engel ... ===== ...
Jeffrey Engel
jengeltx
Offline Send Email
Nov 5, 2004
9:13 pm
994
You can see the differents below. my output string is: avr-objcopy -O elf32-avr -R .eeprom Messages.elf Messages.obj yours is:> avr-objcopy -O avrobj...
健邦
jambon305
Offline Send Email
Nov 7, 2004
3:27 pm
995
Hi! I can't compile AvrX for ATMEGA8515. I have added the following lines in the makefile: ICCMCU = m8515 AAVRMCU = 3 GCCMCU = atmega8515 AVRXMCU =...
e96maot
Offline Send Email
Nov 9, 2004
9:07 pm
996
Mattias, I _just_ went through this for the Mega8, so I should be able to help, right? Well, I'm drawing a blank. If I remember correctly, I used a serialio.s...
Jeffrey Engel
jengeltx
Offline Send Email
Nov 9, 2004
10:57 pm
997
Hi, I had this problem when I tried to compile on the mega64 (I am using gcc on linux) and solved it by changing the OS source code. Some of the AVR have more...
Robin Gilham
rgilhamuk
Offline Send Email
Nov 12, 2004
12:16 am
998
You can use the TimeMessageBlock to post a timer to a message queue when a timer expires. This is show in the MessageTimers.c file. How can you post a message...
Robin Gilham
rgilhamuk
Offline Send Email
Nov 12, 2004
11:57 am
999
You would embed the message timer block in some other structure that contains your data: struct { TimerMessageBlock foo; struct { uint8_t bar1; int16_t bar2; }...
Larry Barello
lbarello
Offline Send Email
Nov 12, 2004
3:50 pm
1000
Err, make that: Pass "&MyDataTimerBlock.foo" to the AvrX calls access your data as "MyDataTimerBlock.MyData.{bar1, bar2}" etc. ... From: Larry Barello You...
Larry Barello
lbarello
Offline Send Email
Nov 12, 2004
4:36 pm
1001
Wouldn't it be "MyDataTimerBlock->MyData.{bar1, bar2}" since you are passing the address of MyDataTimerBlock to the functions? Ed Okerson...
Ed Okerson
phoneguin
Offline Send Email
Nov 13, 2004
5:03 am
1002
This technique is a common polymorphic-like trick for object oriented development in "C". Universal message headers are passed around with specific, user...
Boyer, Roger
rlboyer01
Offline Send Email
Nov 13, 2004
5:04 am
1003
I've got 2 tasks on a 16Mhz Atmega16 (tested running in AVRStudio 4 simulator) tasks never continue running after AvrXDelay(), eventually the dccsignal task...
tomvanwietmarschen
tomvanwietma...
Offline Send Email
Nov 26, 2004
2:18 pm
1004
... Never mind, I've been fooling around with this problem for an hour, and 2 minutes after posting I found the problem, I forgot AvrXSetKernelStack(), DOH!...
tomvanwietmarschen
tomvanwietma...
Offline Send Email
Nov 26, 2004
2:27 pm
1005
I, i need to use I2C on ATmega32 with AVRX, Wher can i find some info? by! max_xxv Mauro Soligo ICQ# 129440900 max_xxv@... IW3HZQ ...
Mauro Soligo
max_xxv
Offline Send Email
Nov 26, 2004
3:34 pm
1006
... Check the list archives. A few of us were working on this some months ago. ========================================================== Chris Candreva --...
Christopher X. Candreva
ccandreva
Offline Send Email
Nov 26, 2004
4:31 pm
1007
Hi I am new to AvrX ,AvrX seems to be interesting and powerful. I want to know which files(.c .h)is need to be added to a project in IAR compiler?and what...
yavar_zarei
Offline Send Email
Jan 6, 2005
1:12 am
1008
You will probably have to figure this out yourself. I ported AvrX to IAR over three or four years ago and I certainly don't remember what I did at the time....
Larry Barello
lbarello
Offline Send Email
Jan 6, 2005
6:13 pm
1009
Hi I like too much to use AvrX but I am disappointed because I can not find a good document on detail description of AvrX API functions,please help me ....
yavar_zarei
Offline Send Email
Jan 21, 2005
10:36 pm
1010
Which is the last version forr using with IAR AVR C compiler?2.6d? or 2.6e?(which of them support IAR?)...
yavar_zarei
Offline Send Email
Jan 21, 2005
10:50 pm
1011
There is a API document on the files section of the yahoo group....
Robin Gilham
rgilhamuk
Offline Send Email
Jan 21, 2005
11:39 pm
1012
I have been able to compile my project with gcc compiler under linux and win32 perfectly. I have also been able to compile it with the IAR 3.20 compiler....
Robin Gilham
rgilhamuk
Offline Send Email
Jan 21, 2005
11:41 pm
Messages 983 - 1012 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