TYPE REAL_VS

This structured data type models signals that contain both a value and an indication of signal quality and validity.

See the SEND_REAL_VS/RCV_REAL_VS Resource configurations for an example of its use.

TYPE REAL_VS : (* REAL Value+Status *)
STRUCT
    VALUE : REAL; (* Signal value *)
    STATUS : BYTE; (* Signal quality and validity *)
END_STRUCT;
END_TYPE