Main Content

setPILTimeout

Set 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

setPILTimeout(hwObj,timeVal) configures the timeout value in seconds to be used by the processor-in-the-loop (PIL) execution for reading data from the NVIDIA® target. This value is valid until the hardware object is live.

Examples

collapse all

You can configure the timeout value used by PIL for reading data on an NVIDIA Jetson™ hardware from the MATLAB® environment using the setPILTimeout 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');
setPILTimeout(hwObj,100);

Input Arguments

collapse all

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

Specify the timeout value (in seconds) used by PIL for reading data from the target hardware. This value must be positive integer greater than or equal to 30.

Example: 30

Version History

Introduced in R2019a