Für dieses Forum muß Javascript im Browser aktiviert werden!
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> C2 Quellcode formatieren: <code>Quellcode</code> ASM Quellcode formatieren: <asm>Quellcode</asm> (Innerhalb eines Quellcodeabschnitts ist kein html möglich.) Wichtig: Bitte mache Zeilenumbrüche, bevor Du am rechten Rand des Eingabefeldes ankommst ! > Hallo Leute, > > bei mir bleibt absolut reproduzierbar die CC2 stehen (OS=V3.0) wenn ich eine <code>float</code> variable auf eine > <code>int</code> variable zuweise. Allerdings "spinnt" die <code>str.putintf</code> funktion vorher > schon rum. > > Es geht hier nur um simple Operationen > <code>=</code> > <code>shl</code> > <code>math.log</code> > <code>math.floor</code> > > Hier mein Code > <code> > float b; > int b_i; > string HWCOM_Text; > hwcom.init(); > hwcom.setspeed(hwcom.SPEED_57600); > // clear output screen > hwcom.clr(); > > loop > { > a = 0xFF; > wait hwcom.ready(); > HWCOM_Text = "a1 = "; > str.putintf(HWCOM_Text,a,-4); > hwcom.print(HWCOM_Text); > wait hwcom.ready(); > hwcom.ret(); > a = a or (0xFF shl 8); > wait hwcom.ready(); > HWCOM_Text = "a2 = "; > str.putintf(HWCOM_Text,a,-4); > hwcom.print(HWCOM_Text); > wait hwcom.ready(); > hwcom.ret(); > b = math.log(a); > wait hwcom.ready(); > HWCOM_Text = "OK 1"; > hwcom.print(HWCOM_Text); > wait hwcom.ready(); > hwcom.ret(); > b_i = math.floor(b + 0.5); > wait hwcom.ready(); > HWCOM_Text = "OK 2"; > hwcom.print(HWCOM_Text); > wait hwcom.ready(); > hwcom.ret(); > sleep 1000; > } > } > </code> > > Und hier die Ausgabe: > <code> > a1=0x00FF > <b>a2=0xFFFFFF</b> > OK 1 > <b>?????</b> > </code> > > Tja und nun ist Schluß <code>OK 2</code> kommt nicht mehr > > Die CC2 steht und wartet auf einen Reset. > > 1. Warum kommt eine 6-stellige HEX-Zahl wenn nur eine 4-Stellige kommen darf? > 2. Warum bleibt das Programm hängen? > 3. Das alles passiert nur, wenn ich alle bits der integerzahl auf 1 setze. Also mit 7FFF geht alles. > > Hat einer eine Idee. > > Danke Michael