Main Content

slrealtime.getSupportInfo

Creates slrealtimeinfo.txt file that provides information about Simulink Real-Time installation

Since R2020b

Description

example

slrealtime.getSupportInfo() creates an slrealtimeinfo.txt file that provides information about the Simulink® Real-Time™ installation and all connected target computers for MathWorks® support.

example

slrealtime.getSupportInfo(target_name) creates an slrealtimeinfo-TargetName.txt file that provides information about the Simulink Real-Time installation and the selected target computer for MathWorks support.

example

slrealtime.getSupportInfo(model_name) creates an slrealtimeinfo.txt file that provides information about the Simulink Real-Time installation and all connected target computers for MathWorks support. This option also creates a model_name_configset.m file that provides information about the selected model.

Examples

collapse all

To get support information about the Simulink Real-Time installation, connected target computer TargetPC1, and a Simulink Real-Time model slrt_ex_osc, open the model and run the slrealtime.getSupportInfo command.

  1. slrealtime.getSupportInfo(Target='TargetPC1',Model='slrt_ex_osc');
  2. You also can use this syntax for the command:

    slrealtime.getSupportInfo('Target','TargetPC1','Model','slrt_ex_osc');

Input Arguments

collapse all

Provides name of a selected target computer for which you are building a real-time application. If using a target object name instead of a target computer name character vector, omit quotes. For example, Target=tg.

Example: Target='TargetPC1'

Example: Target=tg

Example: 'Target','TargetPC1'

Provides name of Simulink Real-Time model from which you are building a real-time application. You can add the SLX extension on the model name.

Example: Model='slrt_ex_osc'

Example: 'Model','slrt_ex_osc'

Version History

Introduced in R2020b

expand all