Run simulation with Arduino IO programmatically

Using
set_param('model', 'SimulationMode', 'external')
set_param('model', 'SimulationCommand', 'Start')
a simulation with Arduino I/O can be run from an M-script.
Can the same be done in the simpler "Connected IO" mode?
I was searching a SimulationMode like 'connected_io', but it doesn't seem to exist.
Or does it?

답변 (1개)

Aman Banthia
Aman Banthia 2022년 7월 4일

0 개 추천

Hi Manfred, I understand you are trying to call "Connected IO" mode for simulation programmatically, you can use the following code to do that, it may not show any visible changes when MATLAB opens up but it should run if the Simulink Model is run programmatically too.
set_param('model', 'SimulationMode', 'external')
set_param('model', 'SimulationCommand', 'Start')
set_param('model','ConnectedIO','on')

댓글 수: 1

Thank you Aman.
set_param('model','ConnectedIO','on')
is what I needed. After setting this parameter my simulation could be run simply with the 'sim' command.
However, with
set_param('model', 'SimulationMode', 'external')
set_param('model', 'SimulationCommand', 'Start')
Simulink always uses code generation and runs the model in the "Monitor&Tune" mode, not in "Connected IO" mode. The additional "set_param('model','ConnectedIO','on')" then seems to have no effect.
In short:
set_param('model', 'SimulationMode', 'normal')
set_param('model','ConnectedIO','on')
sim('model')
does the job.

댓글을 달려면 로그인하십시오.

카테고리

도움말 센터File Exchange에서 Arduino Hardware에 대해 자세히 알아보기

질문:

2022년 6월 20일

댓글:

2022년 7월 4일

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by