Contenido principal

slrealtime.getCrashStack

R2026b

Downloads and decodes crash stack core files from target computer and opens these in MATLAB editor

Description

files = slrealtime.getCrashStack(target_object) downloads and decodes crash stack core files from the Speedgoat® target computer and opens these in the MATLAB editor. The decoded core files help you investigate issues that cause application crashes on the target computer. Use this function to download crash stack core files from the target computer. After the file transfer to the development computer, this function removes the crash stack core files from the target computer.

example

Examples

collapse all

Create a Target object tg. Connect to the target computer. Get and open any crash stack information that is available on the target computer.

tg = slrealtime;
connect(tg);
my_files = slrealtime.getCrashStack(tg);

Input Arguments

collapse all

Object that represents target computer, specified as a Target object. The object provides access to methods that manipulate the target computer properties.

Example: tg

Output Arguments

collapse all

Holds file names created from downloaded and decoded core files.

Version History

Introduced in R2020b

expand all