Allright. I've just tried the previous version of WinAVR (gcc 3.???) and it's the same problem. Even more odd, my mega8 was full at 98% before and with the...
Back when I was first getting started with AvrX I got tired of constantly referring to the examples to see how to call a function or even if the function I...
Wow Stephane - that was quick. Okay, I uploaded it and put it in the files section (API.txt). Maybe we could start a project where everybody contributes...
Hi Dave: Thank You so much, I had download Your API.txt,It is helpful for me ;after I post the message and got some feedback ,in order to make a list be a...
... Dave, fantastic. I'm new to AVR so I might not contribute much, but I'll definitely be using it. Thanks __________________________________ Do you Yahoo!? ...
One thing you can do is grab the headers for each AvrX function in the assembly source. I tried to fully document each call there. Cut them out, adjust the...
I've been off on vacation and am just now getting caught back up in this group so this may be too late to be of any help. I have been doing something similar...
Hi, I am attempting to compile and simulate the Basic Test suite of code. I run into a problem where the code actually jumps OUT of the while(1) loop of task1...
Hi. Has anyone ever successfully integrated a TCP/IP protocol stack with AvrX? What about an SNMP agent? Can you tell me where to find any reference source...
Hi, Larry. A little under 3 years ago, you wrote (in message 137): [quote] Now I remember: The return address on the stack is always 16 bits. So AvrX, without...
The context save/restore routines would need to be updated to include the Ramp whatever register that has the upper bit of the address. I am not sure what the...
Hi. I have an system with 4 rt module,at any time one of them is active.(select module at start-up).each module need full MCS resource (1K ram,register & I/O)....
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; }...