Restart or Shutdown Raspberry PI crashes Matlab
9 ビュー (過去 30 日間)
古いコメントを表示
Hi guys,
To restart:
system(raspberrypi,'sudo shutdown -r now')
%or
system(raspi,'sudo shutdown -r now')
It works! Raspberry Pi restarts but Matlab continues busy even after Raspberry Pi has restarted.
Also, I didn't find any documentation about raspberrypi vs raspi, what is the difference between one and other?
Best!
0 件のコメント
採用された回答
Walter Roberson
2017 年 9 月 20 日
I am not surprised. I would tend to expect that communication with the raspberry follows a protocol, and that MATLAB will continue to believe the connection is busy until it gets the "all done" response, which it is not going to ever get because you rebooted the device.
The raspi object is designed mostly for use from MATLAB; the raspberrypi function is designed mostly for use with Simulink.
0 件のコメント
その他の回答 (1 件)
Mario Frischmann
2017 年 9 月 20 日
Any solutions?
1 件のコメント
Alejandro Ojeda
2018 年 7 月 5 日
編集済み: Alejandro Ojeda
2018 年 7 月 5 日
This is nonblocking
p = raspberrypi;
p.system('sudo shutdown -r +1');
参考
カテゴリ
Help Center および File Exchange で MATLAB Support Package for Raspberry Pi Hardware についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!