Hi,

ich hatte das eigentlich so gemeint:

Code:
$regfile = "m16def.dat"
$crystal = 16000000                                         'Quarzfrequenz
$baud = 9600


'Ports für linken Motor
Config Pinc.6 = Output                                      'Linker Motor Kanal 1
Config Pinc.7 = Output                                      'Linker Motor Kanal 2
Config Pind.4 = Output                                      'Linker Motor PWM
'Ports für rechten Motor
Config Pinb.0 = Output                                      'Rechter Motor Kanal 1
Config Pinb.1 = Output                                      'Rechter Motor Kanal 2
Config Pind.5 = Output

do

Portc.6 = 1                                                 'bestimmt Richtung
Portc.7 = 0                                                 'bestimmt Richtung
Portd.4 = 1                                                 'Linker Motor EIN
'Rechter Motor ein
Portb.0 = 1                                                 'bestimmt Richtung rechter Motor
Portb.1 = 0                                                 'bestimmt Richtung rechter Motor
Portd.5 = 1

loop

Viele Grüße
ikarus_177