diff options
author | Siddharth11235 | 2019-09-03 18:09:16 +0530 |
---|---|---|
committer | Siddharth11235 | 2019-09-03 18:09:16 +0530 |
commit | b4b6aa36e3486a3544acc52419149b5671f841e9 (patch) | |
tree | 66c1783158f23e6d21c77324156fc57e18d4ac67 /ArduinoIPCWrite.mo | |
parent | f5266f634f4fb4fd39933a83551a01cf446256b8 (diff) | |
download | OpenModelica_HIL-master.tar.gz OpenModelica_HIL-master.tar.bz2 OpenModelica_HIL-master.zip |
Diffstat (limited to 'ArduinoIPCWrite.mo')
-rwxr-xr-x | ArduinoIPCWrite.mo | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/ArduinoIPCWrite.mo b/ArduinoIPCWrite.mo new file mode 100755 index 0000000..8b269b4 --- /dev/null +++ b/ArduinoIPCWrite.mo @@ -0,0 +1,19 @@ +class ArduinoIPCWrite + +import InterProcessCommunication.SharedMemory.*; +Real ModelicaInput; + Real ModelicaOutput (start = 1); + Real OutputDummy; + equation + + + ModelicaOutput = sin(time)*100; + when sample(0, 0.005) then + + ModelicaInput = InterProcessCommunication.SharedMemory.SharedMemoryRead(1); + OutputDummy = InterProcessCommunication.SharedMemory.SharedMemoryWrite(1, ModelicaOutput); + + end when; +annotation( + experiment(StartTime = 0, StopTime = 20, Tolerance = 1e-6, Interval = 0.12)); +end ArduinoIPCWrite;
\ No newline at end of file |