Hi,
entschuldigt die unterbrechung, aber unser internet schlappt gerade ein bisschen ab (wir haben immerhin noch ein 28k modem!!!)
Der apple hat zwar ein programm welches textdateien lesen kann, aber die damit erstellten textdokumente gefielen dem Pc immer noch nicht richtig.
ich hab mir jetzt einfach den code in programmers notepad abgetippt und es sind jetzt "nur" noch ein paar Fehler, die mir aber auch eher was mit dem inhaltlichen des Codes zu tun haben scheinen:
Code:
I:\Dokumente und Einstellungen\Jacob\Desktop\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      1528         0
.data         0   8388704
.bss          1   8388704
.noinit       0   8388705
.eeprom       0   8454144
.stab      3144         0
.stabstr   1740         0
Total      6413


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 `FollowLine':
test.c:20: error: `LEFT' undeclared (first use in this function)
test.c:20: error: (Each undeclared identifier is reported only once
test.c:20: error: for each function it appears in.)
test.c:20: error: `RIGHT' undeclared (first use in this function)
test.c: In function `main':
test.c:98: error: parse error before ';' token
test.c:100: error: `LEFT' undeclared (first use in this function)
test.c:100: error: `RIGHT' undeclared (first use in this function)
test.c:118:1: warning: no newline at end of file
make: *** [test.o] Error 1

> Process Exit Code: 2
MfG Jacob