displayTriggerCondition
Description
displayTriggerCondition(
displays the
signal value comparisons and logical operator that define the overall trigger condition in
trigger stage 1 for the first data capture IP. hub
)hub
is a customized data
capture object.
displayTriggerCondition(
specifies options using one or more name-value arguments. For example,
hub
,Name=Value
)TriggerStageIndex=2
sets the trigger stage to 2.
Examples
Display Trigger Conditions
This example uses a customized data capture hub object,
hub
, that connects with two data capture IPs. The first data capture
IP is datacapture1
and the second data capture IP is
datacapture2
. Each IP defines two signals for both trigger and data
capture. Signal A
is 1 bit and signal B
is 8 bits.
The maximum number of trigger stages is set to 2.
Set number of trigger stages to 2 for both the IPs.
setNumberofTriggerStages(hub,2,DataCaptureName="datacapture1"); setNumberofTriggerStages(hub,2,DataCaptureName="datacapture2");
Set up a trigger condition to capture data when the FPGA detects a high value on
signal A
at the same time as signal B
is greater
than 7. Set this condition in trigger stage 2 for the datacapture1
IP.
setTriggerCondition(hub,'A',true,'High',TriggerStageIndex=2); setTriggerCondition(hub,'B',true,7,TriggerStageIndex=2); setTriggerComparisonOperator(hub,'B','>',TriggerStageIndex=2);
Combine comparisons of signals A
and B
into an
overall trigger condition using an AND
operator.
setTriggerCombinationOperator(hub,'AND',TriggerStageIndex=2);
Set up the same trigger condition in trigger stage 2 for the
datacapture2
IP.
setTriggerCondition(hub,'A',true,'High', ... TriggerStageIndex=2,DataCaptureName="datacapture2"); setTriggerCondition(hub,'B',true,7, ... TriggerStageIndex=2,DataCaptureName="datacapture2"); setTriggerComparisonOperator(hub,'B','>', ... TriggerStageIndex=2,DataCaptureName="datacapture2"); displayTriggerCondition(hub,TriggerStageIndex=2, ... DataCaptureName="datacapture2");
Display the overall trigger condition in trigger stage 2 for the
datacapture1
IP.
displayCaptureCondition(hub,TriggerStageIndex=2);
The trigger condition is: A==High and B>7
Display the overall trigger condition in trigger stage 2 for the
datacapture2
IP.
displayCaptureCondition(hub,TriggerStageIndex=2, ... DataCaptureName="datacapture2");
The trigger condition is: A==High and B>7
Input Arguments
hub
— Data capture hub object
dataCaptureHub
object
Data capture hub object that interacts with each data
capture IP, specified as a dataCaptureHub
object.
Name-Value Arguments
Specify optional pairs of arguments as
Name1=Value1,...,NameN=ValueN
, where Name
is
the argument name and Value
is the corresponding value.
Name-value arguments must appear after other arguments, but the order of the
pairs does not matter.
Before R2021a, use commas to separate each name and value, and enclose
Name
in quotes.
Example: displayTriggerCondition(DC,DataCaptureIP="datacapture1");
TriggerStageIndex
— Trigger stage
1
(default) | integer from 1 to M
Trigger stage, specified as an integer from 1 to M, where M is set by the Max trigger stages parameter of the FPGA Data Capture Component Generator tool.
dataCaptureIPName
— Name of data capture IP
"generatedIPName1"
(default) | character vector | string scalar
Name of the data capture IP, specified as a character vector or string scalar. The default
value for this argument is "generatedIPName1"
,
where generatedIPName1 is the name of the first data capture IP set
by the Generated IP name parameter of
the FPGA Data Capture Component Generator
tool.
Version History
Introduced in R2024a
MATLAB Command
You clicked a link that corresponds to this MATLAB command:
Run the command by entering it in the MATLAB Command Window. Web browsers do not support MATLAB commands.
Select a Web Site
Choose a web site to get translated content where available and see local events and offers. Based on your location, we recommend that you select: .
You can also select a web site from the following list
How to Get Best Site Performance
Select the China site (in Chinese or English) for best site performance. Other MathWorks country sites are not optimized for visits from your location.
Americas
- América Latina (Español)
- Canada (English)
- United States (English)
Europe
- Belgium (English)
- Denmark (English)
- Deutschland (Deutsch)
- España (Español)
- Finland (English)
- France (Français)
- Ireland (English)
- Italia (Italiano)
- Luxembourg (English)
- Netherlands (English)
- Norway (English)
- Österreich (Deutsch)
- Portugal (English)
- Sweden (English)
- Switzerland
- United Kingdom (English)
Asia Pacific
- Australia (English)
- India (English)
- New Zealand (English)
- 中国
- 日本Japanese (日本語)
- 한국Korean (한국어)