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

Re: systemzeit und hwcom Kategorie: Programmierung (von Andi B. - 10.03.2004 18:09)
Als Antwort auf systemzeit und hwcom von Mark - 10.03.2004 16:09
Ich nutze:
C-Control II Unit, C164CI-ControllerBoard, CC2-Application-Board, eigenes Board, OSOPT_V2
Hallo Mark,

du muÃ?t die variable a und c als String senden

Beispiel:
str.clear(a);
str.putlong (a,system.hour());
hwcom.print(a);
hwcom.print(b);
str.clear(c);
str.putlong (c,system.minute());
hwcom.print(c);

gruÃ?

Andi B.



> Hallo,
>
> ich möchte die Systemzeit über die die serielle Schnittstelle ausgeben:
> Leider wird nur der Doppelpunkt ausgegeben.
> Was mache ich falsch???
>
>
> thread main
>  {
>    string a,b,c;
>    c=":";
>    hwcom.init();
>    hwcom.setspeed(hwcom.SPEED_9600);
>    hwcom.set_S0CON(hwcom.set8N1);
>    
>    loop
>     {
>      a=system.hour();
>      b=system.minute();
>      hwcom.flush();
>      hwcom.print(a);
>      hwcom.print(c);
>      hwcom.print(b);
>      hwcom.ret();
>      sleep 1000;
>     }
>  }
>
> Danke...


    Antwort schreiben


Antworten:

Danke Andi (von Mark - 10.03.2004 18:21)