Merged with Edouard's modifications
authorlaurent
Sun, 27 Mar 2011 16:19:36 +0200
changeset 253 18988de676ac
parent 252 0bda13ec66b3 (current diff)
parent 251 5e7457efbb8f (diff)
child 254 28bd86c56793
child 258 d7d92b2f87e9
Merged with Edouard's modifications
--- a/lib/ieclib.txt	Sun Mar 27 15:55:51 2011 +0200
+++ b/lib/ieclib.txt	Sun Mar 27 16:19:36 2011 +0200
@@ -36,3 +36,4 @@
 {#include "integral_st.txt" }
 {#include "pid_st.txt" }
 {#include "ramp_st.txt" }
+{#include "sema.txt" }
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/lib/sema.txt	Sun Mar 27 16:19:36 2011 +0200
@@ -0,0 +1,25 @@
+(*
+ * (c) 2011 Edouard Tisserant
+ *
+ * Fake semaphore support, for non preemptive implementation.
+ *
+ *)
+
+
+FUNCTION_BLOCK SEMA
+  VAR_INPUT
+    CLAIM : BOOL;
+    RELEASE : BOOL;
+  END_VAR
+  VAR_OUTPUT
+    BUSY : BOOL;
+  END_VAR
+  VAR
+    Q_INTERNAL : BOOL;
+  END_VAR
+
+  Q_INTERNAL := CLAIM OR ( Q_INTERNAL AND (NOT RELEASE));
+  BUSY := Q_INTERNAL;
+
+END_FUNCTION_BLOCK
+