From OpenSCADAWiki
Jump to: navigation, search
(Importing a new version from external source)
 
(Importing a new version from external source)
 
Line 3: Line 3:
 
* ''bool isLive;'' — flag "Station Alive";
 
* ''bool isLive;'' — flag "Station Alive";
 
* ''float cnt;'' — counter of requests to the remote station or timer of a re-connection try;
 
* ''float cnt;'' — counter of requests to the remote station or timer of a re-connection try;
 +
* ''ResMtx reqM;'' — the station requesting functional lock;
 
* ''SStat( int8_t ilev, bool iisLive = false, float icnt = 0 )'' — station object constructor with level ''ilev'', initiated as "Alive" ''iisLive'' and counter ''icnt'';
 
* ''SStat( int8_t ilev, bool iisLive = false, float icnt = 0 )'' — station object constructor with level ''ilev'', initiated as "Alive" ''iisLive'' and counter ''icnt'';
 
* ''SStat( )'' — constructor by default, initiated as as a missed and an inactive station;
 
* ''SStat( )'' — constructor by default, initiated as as a missed and an inactive station;
 
* ''bool isActive( )'' — station is active.
 
* ''bool isActive( )'' — station is active.

Latest revision as of 10:38, 2 August 2021

Information about message (contribute)
This message has no documentation. If you know where or how this message is used, you can help other translators by adding documentation to this message.
Message definition (Documents/API)
Structure of redundant station (class — TSYS::SStat):
* ''int8_t lev;'' — station level;
* ''bool isLive;'' — flag "Station Alive";
* ''float cnt;'' — counter of requests to the remote station or timer of a re-connection try;
* ''ResMtx reqM;'' — the station requesting functional lock;
* ''SStat( int8_t ilev, bool iisLive = false, float icnt = 0 )'' — station object constructor with level ''ilev'', initiated as "Alive" ''iisLive'' and counter ''icnt'';
* ''SStat( )'' — constructor by default, initiated as as a missed and an inactive station;
* ''bool isActive( )'' — station is active.
TranslationStructure of redundant station (class — TSYS::SStat):
* ''int8_t lev;'' — station level;
* ''bool isLive;'' — flag "Station Alive";
* ''float cnt;'' — counter of requests to the remote station or timer of a re-connection try;
* ''ResMtx reqM;'' — the station requesting functional lock;
* ''SStat( int8_t ilev, bool iisLive = false, float icnt = 0 )'' — station object constructor with level ''ilev'', initiated as "Alive" ''iisLive'' and counter ''icnt'';
* ''SStat( )'' — constructor by default, initiated as as a missed and an inactive station;
* ''bool isActive( )'' — station is active.

Structure of redundant station (class — TSYS::SStat):

  • int8_t lev; — station level;
  • bool isLive; — flag "Station Alive";
  • float cnt; — counter of requests to the remote station or timer of a re-connection try;
  • ResMtx reqM; — the station requesting functional lock;
  • SStat( int8_t ilev, bool iisLive = false, float icnt = 0 ) — station object constructor with level ilev, initiated as "Alive" iisLive and counter icnt;
  • SStat( ) — constructor by default, initiated as as a missed and an inactive station;
  • bool isActive( ) — station is active.