Skip to content

Commit

Permalink
rerun XML's
Browse files Browse the repository at this point in the history
  • Loading branch information
KarlWalther committed Dec 15, 2024
1 parent 93eabde commit 0cb7f66
Show file tree
Hide file tree
Showing 2 changed files with 16 additions and 16 deletions.
16 changes: 8 additions & 8 deletions IEC61131-10XML/Custom01/plc.xml
Original file line number Diff line number Diff line change
Expand Up @@ -225,15 +225,15 @@
</FBD>
</body>
</pou>
<pou name="Reals_Min" pouType="functionBlock">
<pou name="Reals_MultiplyByParameter" pouType="functionBlock">
<interface>
<inputVars>
<variable name="u1">
<variable name="u">
<type>
<REAL/>
</type>
</variable>
<variable name="u2">
<variable name="k">
<type>
<REAL/>
</type>
Expand All @@ -249,19 +249,19 @@
</interface>
<body>
<ST>
<xhtml:p><![CDATA[y := min(u1, u2);]]></xhtml:p>
<xhtml:p><![CDATA[y := k * u;]]></xhtml:p>
</ST>
</body>
</pou>
<pou name="Reals_MultiplyByParameter" pouType="functionBlock">
<pou name="Reals_Min" pouType="functionBlock">
<interface>
<inputVars>
<variable name="u">
<variable name="u1">
<type>
<REAL/>
</type>
</variable>
<variable name="k">
<variable name="u2">
<type>
<REAL/>
</type>
Expand All @@ -277,7 +277,7 @@
</interface>
<body>
<ST>
<xhtml:p><![CDATA[y := k * u;]]></xhtml:p>
<xhtml:p><![CDATA[y := min(u1, u2);]]></xhtml:p>
</ST>
</body>
</pou>
Expand Down
16 changes: 8 additions & 8 deletions IEC61131-10XML/CustomPWithLimiter/plc.xml
Original file line number Diff line number Diff line change
Expand Up @@ -143,15 +143,15 @@
</FBD>
</body>
</pou>
<pou name="Reals_Min" pouType="functionBlock">
<pou name="Reals_MultiplyByParameter" pouType="functionBlock">
<interface>
<inputVars>
<variable name="u1">
<variable name="u">
<type>
<REAL/>
</type>
</variable>
<variable name="u2">
<variable name="k">
<type>
<REAL/>
</type>
Expand All @@ -167,19 +167,19 @@
</interface>
<body>
<ST>
<xhtml:p><![CDATA[y := min(u1, u2);]]></xhtml:p>
<xhtml:p><![CDATA[y := k * u;]]></xhtml:p>
</ST>
</body>
</pou>
<pou name="Reals_MultiplyByParameter" pouType="functionBlock">
<pou name="Reals_Min" pouType="functionBlock">
<interface>
<inputVars>
<variable name="u">
<variable name="u1">
<type>
<REAL/>
</type>
</variable>
<variable name="k">
<variable name="u2">
<type>
<REAL/>
</type>
Expand All @@ -195,7 +195,7 @@
</interface>
<body>
<ST>
<xhtml:p><![CDATA[y := k * u;]]></xhtml:p>
<xhtml:p><![CDATA[y := min(u1, u2);]]></xhtml:p>
</ST>
</body>
</pou>
Expand Down

0 comments on commit 0cb7f66

Please sign in to comment.