Zur Übersicht - INFO - Neueste 50 Beiträge - Neuer Beitrag - Suchen - FAQ - Zum CC1-Forum - Zum CC-Pro-Forum

Re: MAX 7311 Byte to Bit Kategorie: Programmierung (von krassos - 27.02.2006 15:52)
Als Antwort auf Re: MAX 7311 Byte to Bit von Frank - 19.02.2006 17:07
Ich nutze:
C-Control II Unit, CC2-ReglerBoard, OSOPT V3.0
>
> for i = 0 ... 7
>     {
>     if eingang[i] and (0b00000001 shl i)
>     }
>

>

Hallo Frank,

ich gehe davon eingang[i] ist Deine jeweilige Zielvariable, in der Du den Eingangszustand ablegen willst.
Dann denke ich, sollte das so gehen:


for i =0...7
{
if  inbyte and (0b00000001 shl i) eingang[i]=1;else eingang[i]=0;
}



GruÃ? krassos


    Antwort schreiben


Antworten: