Hallo,
ich habe folgendes Programm geschrieben:
Das komische ist jetzt, dass ich weder im Simulator noch auf echter Hardware einen seriellen Interrupt bekomme, wenn ich was zu Controller runterschicke!Code:$regfile = "m32def.dat"
$crystal = 8000000
$baud = 19200
Dim S As Byte
On URXC OnRxD
Enable URXC
Enable Interrupts
Main:
Print S
Goto Main
End
OnRxD:
S = Udr
Return
Kann mir bitte jemand helfen, ich bin am verzweifeln...
Danke, lg Zentauro