Nochmal ne Simple Frage...ich hatte ne kleine Blink Schaltung gemacht:


'################################################# ##
'step2.bas.BAS
'für
'RoboterNetz.de AVR Tutorial in RN-Wissen
'
'Autor: Frank Brall
'Weitere Beispiele und Beschreibung der Hardware
'unter
' http://www.Roboternetz.de oder
' http://www.Roboternetz.de/wissen
'################################################# ######

$regfile = "m32def.dat"
$framesize = 32
$swstack = 32
$hwstack = 32
$crystal = 1000000

Config Portc.2 = Output
Config Portc.1 = Output
Config Portc.0 = Output


Do
Portc.2 = 1
Waitms 100
Portc.2 = 0
Waitms 100

Portc.1 = 1
Waitms 100
Portc.1 = 0
Waitms 100

Portc.0 = 1
Waitms 100
Portc.0 = 0
Waitms 100
Loop

End


PC2=Rote LED
PC1=Gelbe LED
PC0=Grüne LED

Es Blinktenn jedoch nur die Gelbe und die Grüne. Ich habe die Rote in PC3 geändert aber immer noch nix. PD7 geht jedoch...ich habe natürlich immer umgesteckt...woran kann das liegen?