Main Content

getStartupApp

Get information about startup application configuration on target computer

Since R2020b

Description

example

getStartupApp(target_object) gets information about the startup application configuration on the target computer. If you select a startup application, after booting the RTOS, the target computer loads and starts the startup application.

Examples

collapse all

For target object tg, get information about the startup real-time application configuration. The getStartupApplication function returns the name of the application as a character vector.

tg = slrealtime('TargetPC1');
connect(tg);
load(tg,'slrt_ex_mds_and_tasks')
setStartupApp(tg,'slrt_ex_mds_and_tasks')
getStartupApp(tg)
ans =

    'slrt_ex_mds_and_tasks'

Input Arguments

collapse all

Provides access to methods that manipulate the target computer properties.

Example: tg

Version History

Introduced in R2020b