Simulink Real-Time - What is terminal command to "Connect Model"?
5 Ansichten (letzte 30 Tage)
Ältere Kommentare anzeigen
tg = slrealtime;
slbuild('model'); --> build application
tg.load('model'); --> deploy to target
tg.start; --> start application
What is the command to "Connect Model"?

2 Kommentare
Antworten (2)
Chris Zhang
am 6 Aug. 2021
tg=slrealtime;
tg.connect;
2 Kommentare
Chris Zhang
am 9 Aug. 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
am 26 Jan. 2023
Bearbeitet: Stefanie Schwarz
am 26 Jan. 2023
>> set_param('model','SimulationCommand','connect')
0 Kommentare
Siehe auch
Kategorien
Find more on Target Computer Setup in Help Center and File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!