Main Content

removeDataCaptureIP

Remove data capture IP from hub object

Since R2024a

Description

example

removeDataCaptureIP(hub,dataCaptureIP) removes the data capture IP specified by the dataCaptureIP argument from a dataCaptureHub object specified by the hub argument.

Examples

collapse all

This example removes a data capture IP from the dataCaptureHub object.

Create a data capture hub object, which can interact with each data capture IP. The dataCaptureHub object communicates with the FPGA over a JTAG cable.

hub = dataCaptureHub;

Add the System object™ of the datacapture1 data capture IP to the hub object.

addDataCaptureIP(hub,"datacapture1\datacapture1.m");

Before you add any data capture IP, you must have previously generated the customized data capture components. You must also have integrated the generated IPs into your project and deployed it to the FPGA.

Remove the datacapture1 IP from the hub object.

removeDataCaptureIP(hub,"datacapture1");

Input Arguments

collapse all

Data capture hub object that interacts with each data capture IP, specified as a dataCaptureHub object.

Name of the data capture IP, specified as a character vector or string scalar.

Data Types: char | string

Version History

Introduced in R2024a