Mit "type" 2 Byte zu Integer zusammensetzen Kategorie: Programmierung (von MartinF - 6.03.2005 16:34) | ||
| ||
Hallo miteinander, ich möchte 2 Byte Werte die ich vom I2C-Bus eingelesen habe mit "type" zu einem Integerwert zusammensetzen. Dabei kommt beim Schlüsselwort "type" die Fehlermeldung unexpected type. Was mach ich falsch? //------------------------ thread MyTyp //------------------------- { byte bHSB,bLSB; i2c.start (145); bHSB = i2c.read(); bLSB = i2c.readlast(); i2c.stop(); type MyType { byte High; byte low; } type Wert { bHSB h; bLSB l; } | ||
Antwort schreiben Antworten: Re: Mit "type" 2 Byte zu Integer zusammensetzen (von cris - 6.03.2005 18:33) Re: Mit "type" 2 Byte zu Integer zusammensetzen (von MartinF - 8.03.2005 16:12) |