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...
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...
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...
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...
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!...
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 ...
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...
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: ===================================== ...
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, You're probably right. The WinAVR / AvrX on another computer compiles correctly. I'll start over with the latest version. Thanks! Jeff Engel ... ===== ...
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...
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...
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...
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...
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; }...
Err, make that: Pass "&MyDataTimerBlock.foo" to the AvrX calls access your data as "MyDataTimerBlock.MyData.{bar1, bar2}" etc. ... From: Larry Barello You...
This technique is a common polymorphic-like trick for object oriented development in "C". Universal message headers are passed around with specific, user...
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...
... 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!...
... Check the list archives. A few of us were working on this some months ago. ========================================================== Chris Candreva --...
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...
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....
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 ....
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....