Initial commit
This commit is contained in:
16
PLC/POUs/Scheduler/DUTs/E_TransitCond.TcDUT
Normal file
16
PLC/POUs/Scheduler/DUTs/E_TransitCond.TcDUT
Normal file
@@ -0,0 +1,16 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<TcPlcObject Version="1.1.0.1">
|
||||
<DUT Name="E_TransitCond" Id="{0c8e8042-17f8-4b76-ad0c-96d650245098}">
|
||||
<Declaration><![CDATA[{attribute 'qualified_only'}
|
||||
{attribute 'strict'}
|
||||
{attribute 'to_string'}
|
||||
TYPE E_TransitCond :
|
||||
(
|
||||
ALWAYS := 0,
|
||||
RESULT_OK,
|
||||
RESULT_NIO
|
||||
);
|
||||
END_TYPE
|
||||
]]></Declaration>
|
||||
</DUT>
|
||||
</TcPlcObject>
|
||||
14
PLC/POUs/Scheduler/DUTs/ST_Recipe.TcDUT
Normal file
14
PLC/POUs/Scheduler/DUTs/ST_Recipe.TcDUT
Normal file
@@ -0,0 +1,14 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<TcPlcObject Version="1.1.0.1">
|
||||
<DUT Name="ST_Recipe" Id="{3e2c2867-3147-4627-bf49-6255dbaf5310}">
|
||||
<Declaration><![CDATA[TYPE ST_Recipe :
|
||||
STRUCT
|
||||
uiRecipeID : UINT;
|
||||
uiStartNode : UINT := 0;
|
||||
uiNodeCnt : UINT := 0;
|
||||
astNodes : ARRAY[0..(GVL_Scheduler.MAX_RECIPE_NODES - 1)] OF ST_RecipeNode;
|
||||
END_STRUCT
|
||||
END_TYPE
|
||||
]]></Declaration>
|
||||
</DUT>
|
||||
</TcPlcObject>
|
||||
19
PLC/POUs/Scheduler/DUTs/ST_RecipeNode.TcDUT
Normal file
19
PLC/POUs/Scheduler/DUTs/ST_RecipeNode.TcDUT
Normal file
@@ -0,0 +1,19 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<TcPlcObject Version="1.1.0.1">
|
||||
<DUT Name="ST_RecipeNode" Id="{ceb8b626-8a65-4e92-9344-14e330b6c8bd}">
|
||||
<Declaration><![CDATA[TYPE ST_RecipeNode :
|
||||
STRUCT
|
||||
uiNodeID : UINT;
|
||||
// Required capabilities
|
||||
dwReqCap : DWORD;
|
||||
|
||||
// Transition count
|
||||
uiTransCnt : UINT;
|
||||
|
||||
// Transitions
|
||||
astTransitions : ARRAY[0..(GVL_Scheduler.MAX_STATIONS - 1)] OF ST_Transition;
|
||||
END_STRUCT
|
||||
END_TYPE
|
||||
]]></Declaration>
|
||||
</DUT>
|
||||
</TcPlcObject>
|
||||
12
PLC/POUs/Scheduler/DUTs/ST_Transition.TcDUT
Normal file
12
PLC/POUs/Scheduler/DUTs/ST_Transition.TcDUT
Normal file
@@ -0,0 +1,12 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<TcPlcObject Version="1.1.0.1">
|
||||
<DUT Name="ST_Transition" Id="{7b8c5232-d3a6-4d0b-b8ad-e54400018d53}">
|
||||
<Declaration><![CDATA[TYPE ST_Transition :
|
||||
STRUCT
|
||||
eCondition : E_TransitCond;
|
||||
uiNextNodeID : UINT;
|
||||
END_STRUCT
|
||||
END_TYPE
|
||||
]]></Declaration>
|
||||
</DUT>
|
||||
</TcPlcObject>
|
||||
Reference in New Issue
Block a user