Main Content

addFPGADataCaptureToVivado

Add data capture IPs to Vivado project

Since R2024a

Description

example

addFPGADataCaptureToVivado(vivadoProjectPath) adds the JTAG Debug Hub IP to the user repository of a Vivado® project specified by vivadoProjectPath.

addFPGADataCaptureToVivado(vivadoProjectPath,DataCaptureIPFolder=destinationFolder) adds the data capture IPs from a folder specified by destinationFolder, along with the JTAG Debug Hub IP, to the user repository of a Vivado project specified by vivadoProjectPath.

Examples

collapse all

This example adds the data capture IPs in the hdlsrc folder to the user repository of the Vivado project located at C:\test_design_zc706\hdl_prj\vivado_ip_prj\vivado_prj.xpr.

addFPGADataCaptureToVivado("C:\test_design_zc706\hdl_prj\ ...
vivado_ip_prj\vivado_prj.xpr",DataCaptureIPFolder="hdlsrc");

Input Arguments

collapse all

Name of the Vivado project location, specified as a character vector or string scalar.

Example: "C:\test_design_zc706\hdl_prj\vivado_ip_prj\vivado_prj.xpr"

Data Types: char | string

Name of the folder that contains the data capture IPs, specified as a character vector or string scalar.

Example: "hdlsrc"

Data Types: char | string

Version History

Introduced in R2024a