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....
hi, i am new user of Avrx and facing a problem while compiling the Exaples.... ... avr-objcopy --debugging -O coff-ext-avr \ --change-section-address...
Hello, I'm sending messages from one task2 to task1 and I'm trying to have task 1 delay while there are no messages on the queue, this is how it ... ...
Hi, Ok, I've solved the problem. I changed priorities and then used a pMessageControlBlock to check the message etc. So now I wonder what the difference...
I would guess that one is the MessageControlBlock is the actual structure and the pMessageControlBlock is merely a pointer to that type of structure. Take...
Have you compiled also the examples under IAR 3.2 ? Because this one doesn't seem to work for me. The compiler complains about AVRX_IAR_TASK initialization. ...
Hi Laurentiu, Yes I have been able to compile code, did not try one of the examples but I made my project compile with the gnu compiler and iar compiler...
Hello Robin, I tried that and, of course, it works. But, as I read, __C_task or __task keyword instructs the compiler not to save/restore registers at function...
I've had the timers example code running on an STK500 using an ATmega128 based at address 0, but when I set it for boot block it doesn't run. I can run code...