... I've got WinAVR and that doesn;t work either. The following happens with it: C:\AVRX\avrx>make gcc avr-gcc -x assembler-with-cpp -mmcu=at90s8535 -c ...
... I do ... please ... I've just worked out that io-avr.h is probably the WinAVR io.h file. I now get: C:\AVRX\avrx>make gcc avr-gcc -x assembler-with-cpp...
I just found that I should be using 2.6e from the Group Files area, rather than 2.6d on the AvrX web site. That builds OK. Thanks for the help. I'll write up...
I get the following error when building the Timers example: C:\AVRX\Examples>make gcc avr-gcc -c Timers.c -I. -I../avrx -I/avr/inc -Os -Wall -mmcu=at90s8535 -g...
The latest WinAVR doesn't support the old Atmel obj file. So any targets of the form %obj: %elf are not supported as are any rules involving "objtool", the...
... Thanks, Larry. I deleted the %obj and %cof rules and added the above. However, I now get: C:\AVRX\Examples>make gcc C:\WINAVR\UTILS\BIN\MAKE.EXE: *** No...
Find the rule "gcc", look at all the requirements (to the right of the colon) and delete "timers.obj" since object files are now obsolete. Make sure you have...
... Make ... I deleted $(SRC:.c=.obj) and tried this: gcc: $(SRC:.c=.cof) $(SRC:.c=.hex) $(SRC:.c=.eep) but got this: C:\AVRX\Examples>make gcc avr-gcc -c...
It builds now. I've appended the edited makefile, in case anyone else is using WinAVR and has problems. Thanks, Larry. Leon # AvrX 2.5 GCC Examples makefile #...
I had lots of problems building AvrX using the WinAVR gcc tools for the AVR, so I thought I'd upload my corrected version. It's based on version 2.6e of AvrX,...
Is there any chance of running AVRX on a mega16? I am working on a wireless sensor network project and a RTOS would be very helpful for handling the radio...
I recently updated from 3.2 to 3.3.1 and am having trouble running the AVRX code. Compiles with the only warning "CS00 redifined in io.h". Anybody having...
It would help if you included a bit more context - like the actual error messages. However: Since there were many changes in GCC w/regard to I/O defines and...
Hello! I don't yet have a possibility to debug my AvrX program with ICE or software processor.. so I'm bit confused with task stack sizes. My program uses both...
AvrX stacks interrupts on the AvrX stack, which is nominally set to the stack GCC uses (end of ram, or internal sram). Individual task stacks only need to...
Well, I'm trying for the Mega16 but with-out any luck! I'm getting this: E:/AVRX/avrx/serialio.s: Assembler messages: E:/AVRX/avrx/serialio.s:243: Error:...
Well, I'm trying for the Mega16 but with-out any luck! I'm getting this: E:/AVRX/avrx/serialio.s: Assembler messages: E:/AVRX/avrx/serialio.s:243: Error:...
Well I don't have the same luch with the Mega16. I'm getting the following: E:/AVRX/avrx/serialio.s: Assembler messages: E:/AVRX/avrx/serialio.s:243: Error:...
Which version are you using? You need to get the latest source from www.yahoogroups.com/group/avrx files section (2.6e). It has to do with how I/O ports are...
Is there any way to experimentaly obtain minimal stack size that enought for specified thread? My thread calls any functions that uses unknown stack space. So,...