Fix formatting of commented variables

Delete the extra jum line.
Change from lince comment to a block comment.
Use x for the index of the array instead of the HMI variable.

modified:   solution/tc_project_app/POUs/Application_Specific/Applications/Shutter_Operator_panel_Template.TcPOU
This commit is contained in:
Federico Rojas
2024-07-17 11:59:34 +02:00
parent 8ebe255569
commit 1399869326
@@ -13,22 +13,21 @@ VAR
END_VAR
]]></Declaration>
<Implementation>
<ST><![CDATA[//Uncomment code that is needed to control the LEDs of the Safety Shutter Operator panel
<ST><![CDATA[//Uncomment the code, it is needed to control the LEDs of the Safety Shutter Operator panel
(*
//Assign LED to the permit status
//bNoPermitLight := NOT gvl.astPneumaticAxes[main.hmiPneumaticAxisSelection].stPneumaticAxisInputs.bPSSPermit;
bNoPermitLight := NOT GVL.astPneumaticAxes[x].stPneumaticAxisInputs.bPSSPermit;
//Assign LED to the error status
//bErrorLight := gvl.astPneumaticAxes[main.hmiPneumaticAxisSelection].stPneumaticAxisStatus.bError;
bErrorLight := GVL.astPneumaticAxes[x].stPneumaticAxisStatus.bError;
//Assign LEDs to the end switches statuses
//bExtendedLight := gvl.astPneumaticAxes[main.hmiPneumaticAxisSelection].stPneumaticAxisStatus.bExtended;
//bRetractedLight := gvl.astPneumaticAxes[main.hmiPneumaticAxisSelection].stPneumaticAxisStatus.bRetracted;
bExtendedLight := GVL.astPneumaticAxes[x].stPneumaticAxisStatus.bExtended;
bRetractedLight := GVL.astPneumaticAxes[x].stPneumaticAxisStatus.bRetracted;
//Checking the condition for the Moving LED
//bMovingLight := gvl.astPneumaticAxes[main.hmiPneumaticAxisSelection].stPneumaticAxisStatus.bRetracting OR gvl.astPneumaticAxes[main.hmiPneumaticAxisSelection].stPneumaticAxisStatus.bExtending;
bMovingLight := GVL.astPneumaticAxes[x].stPneumaticAxisStatus.bRetracting OR gvl.astPneumaticAxes[x].stPneumaticAxisStatus.bExtending;
*)
]]></ST>
</Implementation>
</POU>