Main Content

getPILTimeout

Get the timeout value that PIL uses for reading data

Since R2019a

Add-On Required: This feature requires the MATLAB Coder Support Package for NVIDIA Jetson and NVIDIA DRIVE Platforms add-on.

Description

example

timeVal = getPILTimeout(hwObj) displays the timeout value in seconds used by the processor-in-the-loop (PIL) execution for reading data from the NVIDIA® target.

Examples

collapse all

You can check the timeout value used by PIL for reading data on an NVIDIA Jetson™ hardware from the MATLAB® environment using the getPILTimeout method of the jetson hardware connection object.

To create a live hardware connection object, provide the host name or IP address, user name, and password of the target board.

hwObj = jetson('jetson-board-name','ubuntu','ubuntu');
getPILTimeout(hwObj);
ans =

       30

Input Arguments

collapse all

Connection to a specific NVIDIA hardware board, specified as a jetson or drive object.

Output Arguments

collapse all

Timeout value used by PIL for reading data from the target hardware, returned as a positive integer. The value is in seconds.

Example: 30

Version History

Introduced in R2019a