Added etcher maste recipe

This commit is contained in:
2026-02-25 15:56:41 +01:00
parent 49f60e17cd
commit 13444a149c
2 changed files with 7 additions and 4 deletions

View File

@@ -17,9 +17,9 @@ STRUCT
stMasterFlowRecipe : ST_FlowRecipe; stMasterFlowRecipe : ST_FlowRecipe;
// Master station recipes // Master station recipes
stMasterRecipeEtcher : ST_Recipe_Etcher;
stMasterRecipeHotplate : ST_Recipe_Hotplate; stMasterRecipeHotplate : ST_Recipe_Hotplate;
stMasterRecipeCoolplate : ST_Recipe_Coolplate; stMasterRecipeCoolplate : ST_Recipe_Coolplate;
stMasterRecipeHVTest : ST_Recipe_HVTester; stMasterRecipeHVTest : ST_Recipe_HVTester;
// ======== // ========

View File

@@ -3,14 +3,17 @@
<DUT Name="ST_Recipe_Etcher" Id="{a2719587-4d71-43a5-9547-91935943e20c}"> <DUT Name="ST_Recipe_Etcher" Id="{a2719587-4d71-43a5-9547-91935943e20c}">
<Declaration><![CDATA[TYPE ST_Recipe_Etcher : <Declaration><![CDATA[TYPE ST_Recipe_Etcher :
STRUCT STRUCT
// Rotation speed in U/min
rRPM : REAL;
// Radial position of water jet under the blank in mm
rRadialPosLowerWaterJet : REAL;
// Number of robot positions // Number of robot positions
uiNumRobotPos : UINT; uiNumRobotPos : UINT;
// Roboter position and setting data // Roboter position and setting data
stRobotStepData : ARRAY[0..(GVL_ETCHER.MAX_ROBOT_POS - 1)] OF ST_Recipe_EtherRobotStepData; stRobotStepData : ARRAY[0..(GVL_ETCHER.MAX_ROBOT_POS - 1)] OF ST_Recipe_EtherRobotStepData;
// Radial position of water jet under the blank in mm
rRadialPosLowerWaterJet : REAL;
END_STRUCT END_STRUCT
END_TYPE END_TYPE
]]></Declaration> ]]></Declaration>