Kommentar: Einfügen von HTML im Kommentar: Link einfügen: <a href="LINKURL" target="_blank">LINKTITEL</a> Bild einfügen: <img src="BILDURL"> Text formatieren: <b>fetter Text</b> <i>kursiver Text</i> <u>unterstrichener Text</u> Kombinationen sind auch möglich z.B.: <b><i>fetter & kursiver Text</i></b> C Quellcode formatieren: <code>Quellcode</code> BASIC Quellcode formatieren: <basic>Quellcode</basic> (Innerhalb eines Quellcodeabschnitts ist kein html möglich.) Wichtig: Bitte mache Zeilenumbrüche, bevor Du am rechten Rand des Eingabefeldes ankommst ! -> I > >Hallo ich habe ein Probelem mit meinem Application board mega 128 > >wenn ich über mein Programm > >das port c anschalte geht port g an. > >Ich habe einmal den CPU ausversehen ein bisschen falsch angeschlossen > >danach ging er trotzdem noch. > >Ist es schlimm wenn mann das Programm auf einem Board übertragen hat und den CPU in ein anderes Board eingesteckt. > >Das Programm ist in Basic > ><basic> > #define P1 16 > #define P2 17 > #define P3 18 > #define P4 19 > #define P5 20 > #define P6 21 > #define P7 22 > #define P8 23 > > Sub main() > Port_DataDirBit(P1,PORT_OUT) > Port_DataDirBit(P2,PORT_OUT) > Port_DataDirBit(P3,PORT_OUT) > Port_DataDirBit(P4,PORT_OUT) > Port_DataDirBit(P5,PORT_OUT) > Port_DataDirBit(P6,PORT_OUT) > Port_DataDirBit(P7,PORT_OUT) > Port_DataDirBit(P8,PORT_OUT) > > Port_WirteBit(P1,PORT_ON) > Port_WirteBit(P2,PORT_ON) > Port_WirteBit(P3,PORT_ON) > Port_WirteBit(P4,PORT_ON) > Port_WirteBit(P5,PORT_ON) > Port_WirteBit(P6,PORT_ON) > Port_WirteBit(P7,PORT_ON) > Port_WirteBit(P8,PORT_ON) > > AbsDelay(5000) > > Port_WirteBit(P1,PORT_OFF) > Port_WirteBit(P2,PORT_OFF) > Port_WirteBit(P3,PORT_OFF) > Port_WirteBit(P4,PORT_OFF) > Port_WirteBit(P5,PORT_OFF) > Port_WirteBit(P6,PORT_OFF) > Port_WirteBit(P7,PORT_OFF) > Port_WirteBit(P8,PORT_OFF) > End Sub > </basic> > > Ich würde mich über Hilfe freuen.