Synchronizing two matlab scripts on two devices
이전 댓글 표시
Hi folks,
I am working on a personal project that requires two devices running a matlab script to remain sychronized. My hope is that device 1 can complete a task then let device 2 know that it is done so device 2 can complete its task, then visa versus, repeating.
This sychronization could be simply done using the time because the tasks are periodic in nature, however I am looking to add some robustness to my script so that if one device is stopped, the other one will also automatically stop. I have considered using a file to load and save states to, but I think that will get messy with two devices tryng to read and write to the same file.
Is there a way to share a variable between devices or an easy way to send messages? I briefly looked into bluetooth, but I feel that there must be a simpler way to do this that I am not aware of.
Any ideas are appreciated,
Thank you!
답변 (1개)
Walter Roberson
2022년 11월 20일
0 개 추천
If the devices support RS232 and you have one of the increasingly-rare true serial ports, then you can use serialport() and configure timeouts, and have the devices send messages over serial to the host that relays to the other device (or send directly between devices.)
If the devices support serial-over-USB then you can use serialport(), very similar to the above (but differences in latency.)
If you have the Instrument Control Toolbox you could consider using udpport() and related functions, or you could consider tcpserver() and tcpclient()
If you do not have Instrument Control Toolbox, then you could consider using tcpclient() -- but the devices would have to be prepared to act as tcp servers.
There is a File Exchange Contribution https://www.mathworks.com/matlabcentral/fileexchange/345-tcp-udp-ip-toolbox-2-0-6 that can act as a tcp server without Instrument Control
Depending on what the devices are, you might possibly be able to configure them with a Digital Pin wire or SPI communication and have them trigger each other.
카테고리
도움말 센터 및 File Exchange에서 Interface-Based Communication에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!