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

Re: Serielle Schnittstelle V24 Kategorie: Programmierung (von reneforster - 9.03.2010 15:06)
Als Antwort auf Re: Serielle Schnittstelle V24 von Torsten - 8.03.2010 21:15
Ich nutze:
C-Control II Unit, C-Control II Station, CC2-ReglerBoard, OSOPT V3.1
Hallo Torsten,

wie Martin schon schreibt, handelt es sich nur um einen originalen Auszug von meinen Modul, welches
nur zur Veranschaulichung dient.


Hier mal noch eins, etwas abgespeckt und hoffentlich übersichtlicher.


/******************************************************************************
Eingsdaten erfassung vom Server
******************************************************************************/


// Modulvariablen ************************************************************

thread ein232
{
string s,b;


loop
{
s="          ";b="          ";


wait hwcom.rxd();
hwcom.receive(s,10,20);



/*******************************************************************************
Empfangsdaten für Digitale Befehle
*******************************************************************************/



b="AD7010001E"; // ZikuPumpe EG auf Automatik
if strx.comp(s,b) {global.ZPE=0;continue;}
b="AD7010002E"; // ZikuPumpe EG auf Zwang EIN
if strx.comp(s,b) {global.ZPE=2;sleep 50;global.ZuZiPuEg=2;continue;}
b="AD7010003E"; // ZikuPumpe EG auf Zwang AUS
if strx.comp(s,b) {global.ZPE=1;sleep 50;global.ZuZiPuEg=1;continue;}



b="AD7999998E"; // Software Reset des Systems
if strx.comp(s,b) {
   quit -1;continue;}


b="AD7999999E"; // Hostmodus einleiten
if strx.comp(s,b) {
   quit 63;continue;}






hwcom.flush();

}}



Rene


    Antwort schreiben


Antworten: