Nigthlord
25.10.2007, 16:10
Hallo alle miteinander.
Ich bin Student an der Uni Luxembourg (UNI.LU) und arbeite an einem Workshop mit AVR-Studio 4.13 build 528 und WinAVR-20070525
Wenn ich dieses ganz einfache Program :
#include <avr/io.h> /* the lib "avr/io.h" located in
avr directory of WINAVR
installation location*/
#define DDRA = 0x00; /*set port A pins as inputs*/
#define DDRD = 0xFF; /*set port D pins as outputs*/
int c; /* C is a real number*/
int main(){ /* start the main program*/
start: /*mark "start"*/
c=PINA; /*read all 8 pin bits of port A and
store to variable c*/
PORTD=c; /*send value c to Pins of port D*/
goto start; /*goto the mark "start"*/
}
eingebe und BUILDen will(F7) dann erscheint diese fehlermeldung:
gcc plug-in: Error: Object file not found on expected location C:\Users\BLABLABLA\AVR-Studio Saves\TEST\default\TEST.elf
Wass kann ich da tun ?????
Muss unbedingt so schnell wie möglich vorankommen mit der programmierung.
Danke für die antworten
Euer Nightlord
Ich bin Student an der Uni Luxembourg (UNI.LU) und arbeite an einem Workshop mit AVR-Studio 4.13 build 528 und WinAVR-20070525
Wenn ich dieses ganz einfache Program :
#include <avr/io.h> /* the lib "avr/io.h" located in
avr directory of WINAVR
installation location*/
#define DDRA = 0x00; /*set port A pins as inputs*/
#define DDRD = 0xFF; /*set port D pins as outputs*/
int c; /* C is a real number*/
int main(){ /* start the main program*/
start: /*mark "start"*/
c=PINA; /*read all 8 pin bits of port A and
store to variable c*/
PORTD=c; /*send value c to Pins of port D*/
goto start; /*goto the mark "start"*/
}
eingebe und BUILDen will(F7) dann erscheint diese fehlermeldung:
gcc plug-in: Error: Object file not found on expected location C:\Users\BLABLABLA\AVR-Studio Saves\TEST\default\TEST.elf
Wass kann ich da tun ?????
Muss unbedingt so schnell wie möglich vorankommen mit der programmierung.
Danke für die antworten
Euer Nightlord