I'm using AVRFreaks 3.2 and when I compile my program, link it, and then when running "objtool" I get this warning: "WARNING: Unknown type modifier =>...
Objtool isn't finished yet. You could send an email with the error to Jason just in case he's not on this list. Unless you intend to use the .cof in AVRStudio...
Tasks queue on semaphores in first come first serve. Tasks released from semaphores are placed on the run queue in priority. So, if a low priority task...
Larry, No problem, I just thought that I was missing something. I finally got AVRx 2.6d up and running on IAR Embedded Workbench 2.27B. I have done some...
I made the changes to a local kernel data structure *after* I did the IAR work. So I never located the data structure. Since the data is referenced off of a...
Hi Larry, Yes, I recycled your interrupt vector mechanism. This seems to work as long as I remember to use your macro to define the interrupt (still in the...
Sorry to cut in like that but I would also be real interested in implementing a profiling feature. I just don't have a clue how but please let the rest of us...
The classic profiler records a clock upon entry & exit from a routine and accumulates the ticks. Another process grabs the tick count every second or so and...
Sounds good. I do something similar too with the spare LEDs on my STK. I'll give it a try later on. Won't be for a while though as I'm trying to get my...
I am having problems getting interrupt handlers to work using AVRx 2.6d and the IAR compiler (2.27B). I have an interrupt that stores incoming UART data into...
Oh, yeah, there is a problem all right. It has been so long I completely forgot about it. IAR, and most other compilers, with the exception of GCC use TWO ...
Hi Larry, That fixed the problem. I see now that this affected more than my interrupts--a corrupted CStack would actually cause problems for any IAR function...
Dear all, I try to make a simple connection between PC(Hyper Terminal) and AVR (8515) using AvrX. If I press a number, that number will displayed at 7-man. It...
Hi, ... which version of avr-gcc do you use. Since 3.2 it is recommended to use direct access instead of inp/outp: i= UDR - 0x30; DISPLAY = digit[i]; You...
When you call InitiSerialIO, you cause the AvrX serial library to be included. This drags in the AvrX serial interrupt handler and causes the multiple...
Hi, ... From: Volkmar Dierkes <volkmar.dierkes@...> ... I use avr-gcc version 3.02 and AvrX 2.6e. Maybe I 'll download the 3.2 version. ... in this time I...
One testing program I wrote worked correctly when I used avr-gcc 3.0.2. But when I tried to use avr-gcc 3.1.1, the testing program worked in a strange way. I...
Greetings! I've been lurking for a while and finally have tried to install Avrx on my iBook w/Jaguar. I've gotten gcc v3.0.3 running, but when I run 'make...
... Edit the file -- there should be 2 versions, the DOS and UNIX versions. Comment out the DOS versions with a # at the start of the line, uncomment the UNIX...
... Sorry -- 1 file, 2 verions of the ABSPATH line. Just realized that wasn't clear. ========================================================== Chris Candreva...
Thanks! I'll give that a try. Jeff Engel, newbie ... __________________________________________________ Do you Yahoo!? Yahoo! Shopping - Send Flowers for...
I'm trying to build avrx with the IAR compiler. When I run 'make', under XP nothing happens. I've tried both version 3.78.1 from C:\WINAVR\utils\bin and...
I am currently using AVRx 2.6d with with the IAR 2.27B compiler. I use the make utility from WinAVR 20030115 to compile the library (make utility must be in...
... I'm using 2.6E with 2.27B. ... I get the same non-results with your makefile. *.r90 don't get assembled. ... I also get this error if I don't remove...
OK, I made quite a few corrections to the AVRx source code to get it to compile in IAR. It has been on my list to put together a detailed summary of all these...
... The micros that I need to use are the 8515 and the Mega8. How do I specify these? I'm using your Mega128 to just to see if it builds right now. You 2.6D...
The _SFR_IO_ADDR errors are caused by changes in version 2.6e. Again, I am using 2.6d -- I recommend that you revert back to 2.6d to resolve these problems....
... I had a mix of your D and my E. Once I got to pure D version every thing compiles now. Thank you. Now I just have to figure out how to build for the 8515...
The "ioavr.h" file includes part specific header files. I see that the AVRx 2.6d file has the 8515, but not the Mega8. You will need to add the definition...
Hi everyone, I need a litte help with IAR Embedded Workbench 2.31C. I am new to AvrX kernel, I have a problem. I compile ok all the library files and I create...