Hallo allerseits
hab mich hier im forum ein bisschen umgeschaut un gemerkt, dass es hier ziemlich viele leute mit viel kompetenz gibt, weswegen ich mal diesen thema hier öffne, da ich ohne fremde hilfe anscheinend net weiter komme.
als erstes wollte ich mich jetzt der linienverfolgung witmen , das programiertechnische was dahinter steht sollte eigentlich auch net das problem sein - um allerdings venünftig rechnen zu können benötige ich die werte der transistoren. diese wollte ich über die anweisung serwrite mir im hyperterminal anzeigen lassen, allerdings erscheint bei mir selbst im einfachsten programm eine fehlermeldung
wäre gediegen wenn ihr mir weiterhelfen könntet
Code:
#include "asuro.h"
int main(void)
{
String hallo;
Init();
SerWrite(Hallo,5);
while(1);
return 0;
}
D:\ASURO_src\FirstTry>make all
set -e; avr-gcc -MM -mmcu=atmega8 -I. -g -Os -funsigned-char -funsigned-bitfields -fpack-struct -fshort-enums -Wall -Wstrict-prototypes -Wa,-ahlms=test.lst test.c \
| sed 's,\(.*\)\.o[ :]*,\1.o \1.d : ,g' > test.d; \
[ -s test.d ] || rm -f test.d
-------- begin --------
avr-gcc --version
avr-gcc (GCC) 3.3.1
Copyright (C) 2003 Free Software Foundation, Inc.
This is free software; see the source for copying conditions. There is NO
warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
Size before:
test.elf :
section size addr
.text 1518 0
.data 0 8388704
.bss 1 8388704
.noinit 0 8388705
.eeprom 0 8454144
.stab 3132 0
.stabstr 1698 0
Total 6349
avr-gcc -c -mmcu=atmega8 -I. -g -Os -funsigned-char -funsigned-bitfields -fpack-struct -fshort-enums -Wall -Wstrict-prototypes -Wa,-ahlms=test.lst test.c -o test.o
test.c: In function `main':
test.c:5: error: `String' undeclared (first use in this function)
test.c:5: error: (Each undeclared identifier is reported only once
test.c:5: error: for each function it appears in.)
test.c:5: error: parse error before "hallo"
test.c:8: error: `Hallo' undeclared (first use in this function)
make: *** [test.o] Error 1
> Process Exit Code: 2
schon ma im vorraus danke
Lesezeichen