For R2020b and later:
To view the status monitor from your development computer, use an SSH utility (such as PuTTY) to connect to the Speedgoat target. Follow steps 1-5 in the following documentation:
In the SSH session, start the status monitor by entering:
Alternative options to retrieve status information from MATLAB:
If you have access to MATLAB & Simulink Real-Time, you can retrieve status information about the target computer using target object properties and functions such as getVersion (R2023a+): tg = slrealtime:
getVersion(tg);
tg.TargetStatus;
tg.ModelStatus;
To observe target execution times (TET) for possible overruns, or the console log in real-time, use TET Monitor and System Log Viewer in SLRT Explorer as an alternative. Open them directly by entering:
>> slrtTETMonitor
>> slrtLogViewer
For R2020a and earlier:
Live viewing the target screen GUI on the host computer is not possible. To obtain a screenshot from the target screen, you can use the following function in the MATLAB command line:
>> tg = slrt;
>> viewTargetScreen(tg)
To use this function, the target needs to be connected to the host and running.