TYPE ST_CrossSpec: STRUCT sName : STRING := "; (*Name of named mixer*) sInputs : STRING := "; (*Input channel of named mixer*) sOutputs : STRING := "; (*Output channel of named mixer*) sValue : STRING := "; (*value of named mixer*) fRamp : REAL := 0; (*Optional ramp time of named mixer*) END_STRUCT END_TYPE
ST_InputSpec
TYPE ST_InputSpec: STRUCT sName : STRING := "; (*Name of named mixer*) sInputs : STRING := "; (*Input channel of named mixer*) sValue : STRING := "; (*value of named mixer*) fRamp : REAL := 0; (*Optional ramp time of named mixer*) END_STRUCT END_TYPE
ST_OutputSpec
TYPE ST_OutputSpec: STRUCT sName : STRING := "; (*Name of named mixer*) sOutputs : STRING := "; (*Output channel of named mixer*) sValue : STRING := "; (*value of named mixer*) fRamp : REAL := 0; (*Optional ramp time of named mixer*) END_STRUCT END_TYPE
ST_CueSpec
TYPE ST_CueSpec: STRUCT sName : STRING := "; (*Name of named mixer*) sCues : STRING := "; (*Cue of named mixer*) sValue : STRING := "; (*value of named mixer*) fRamp : REAL := 0; (*Optional ramp time of named mixer*) END_STRUCT END_TYPE
ST_InputCueSpec
TYPE ST_InputCueSpec EXTENDS ST_CueSpec: STRUCT sInputs : STRING := ";(*Input channel of named mixer*) END_STRUCT END_TYPE