Simulink Real-Time - What is terminal command to "Connect Model"?
4 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
tg = slrealtime;
slbuild('model'); --> build application
tg.load('model'); --> deploy to target
tg.start; --> start application
What is the command to "Connect Model"?
2 comentarios
Jonas
el 5 de Ag. de 2021
I am not sure which action you are missing, is there anything you cannot do with the commands mentioned here?
Respuestas (2)
Chris Zhang
el 6 de Ag. de 2021
tg=slrealtime;
tg.connect;
2 comentarios
Chris Zhang
el 9 de Ag. de 2021
Once the application is loaded on target computer by tg.load(gcs), you can use tg.setparam command to modify parameter values.
Stefanie Schwarz
el 26 de En. de 2023
Editada: Stefanie Schwarz
el 26 de En. de 2023
>> set_param('model','SimulationCommand','connect')
0 comentarios
Ver también
Categorías
Más información sobre Target Computer Setup en Help Center y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!