From 6f3184712fcd4d065c3b129c0890651ea2a14d70 Mon Sep 17 00:00:00 2001 From: Federico Rojas Date: Wed, 2 Apr 2025 12:14:21 +0200 Subject: [PATCH] Add variables for pressure limits high and low Because the pressure limits belong to the cabinet and are application specific, move the variables to GVL_APP as constants modified: solution/tc_project_app/GVLs/GVL_APP.TcGVL --- solution/tc_project_app/GVLs/GVL_APP.TcGVL | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/solution/tc_project_app/GVLs/GVL_APP.TcGVL b/solution/tc_project_app/GVLs/GVL_APP.TcGVL index 05a6eef..0da9a07 100644 --- a/solution/tc_project_app/GVLs/GVL_APP.TcGVL +++ b/solution/tc_project_app/GVLs/GVL_APP.TcGVL @@ -10,6 +10,12 @@ END_VAR VAR_GLOBAL CONSTANT nAXIS_NUM: UINT := 0; //Specifies the total of axes in the system nPNEUMATIC_AXIS_NUM: UINT := 0; //Specifies the total number of pneumatic axes in the system + + //Pneumatic air pressure groups high and low limits + fLOW_LIMIT_AIR_PRESSURE1: REAL := 0; //User defined value in bar for low limit air pressure value for pneumatic axes group 1 + fHIGH_LIMIT_AIR_PRESSURE1: REAL := 0; //User defined value in bar for high limit air pressure value for pneumatic axes group 1 + fLOW_LIMIT_AIR_PRESSURE2: REAL := 0; //User defined value in bar for low limit air pressure value for pneumatic axes group 2 + fHIGH_LIMIT_AIR_PRESSURE2: REAL := 0; //User defined value in bar for high limit air pressure value for pneumatic axes group 2 END_VAR ]]>