Main Content

start

Start IP core execution on hardware board

Description

example

start(socIP) starts the execution of the IP core represented by the socIP object.

This function is only applicable when socIPCore is an object representing TrafficGenerator or VDMATrigger.

Examples

collapse all

Create an socIPCore object representing a traffic generator IP on an FPGA board. Then initialize the traffic generator using the initialize function.

% Create IPCore object for traffic generator IP
trafficGeneratorObj = socIPCore(AXIMasterObj, atg,'TrafficGenerator');
% Initialize traffic generator IP
initialize(trafficGeneratorObj);

Start the traffic generator IP execution on your FPGA board.

start(trafficGeneratorObj);

Input Arguments

collapse all

Connection to IP core running on FPGA board, specified as an socIPCore object.

Version History

Introduced in R2019a

See Also