diff options
Diffstat (limited to 'ArduBasicRW.mo')
-rwxr-xr-x | ArduBasicRW.mo | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/ArduBasicRW.mo b/ArduBasicRW.mo new file mode 100755 index 0000000..8637b5e --- /dev/null +++ b/ArduBasicRW.mo @@ -0,0 +1,19 @@ +model ArduBasicRW +import InterProcessCommunication.SharedMemory.*; +Real ModelicaInput; + Real ModelicaOutput (start = 1); + Real OutputDummy; + Real OP (start = 0); + equation + + ModelicaOutput = time; + when sample(0, 0.02) then + + ModelicaInput = InterProcessCommunication.SharedMemory.SharedMemoryRead(1); + OutputDummy = InterProcessCommunication.SharedMemory.SharedMemoryWrite(1, ModelicaOutput); + end when; + OP = ModelicaOutput - ModelicaInput; +annotation( + experiment(StartTime = 0, StopTime = 20, Tolerance = 1e-6, Interval = 0.001)); + +end ArduBasicRW;
\ No newline at end of file |