-
Notifications
You must be signed in to change notification settings - Fork 50
NI DAQMX Triggering
- Start Trigger
- Reference Trigger
- Advanced Trigger
- DAQmxSendSoftwareTrigger
- DAQmxWaitForValidTimestamp
int32 DAQmxCfgAnlgEdgeStartTrig (TaskHandle taskHandle, const char triggerSource[], int32 triggerSlope, float64 triggerLevel);
Configures the task to start acquiring or generating samples when an analog signal crosses the level you specify.
Input | ||
---|---|---|
Name | Type | Description |
taskHandle | TaskHandle | The task used in this function. |
triggerSource | const char [] | The name of a channel or terminal where there is an analog signal to use as the source of the trigger. For E Series devices, if you use a channel name, the channel must be the first channel in the task. The only terminal you can use for E Series devices is PFI0. |
triggerSlope | int32 | Specifies on which slope of the signal to start acquiring or generating samples when the signal crosses triggerLevel. |
Value | Description | |
---|---|---|
DAQmx_Val_RisingSlope | Trigger on the rising slope of the signal. | |
DAQmx_Val_FallingSlope | Trigger on the falling slope of the signal. |
triggerLevel | float64 | The threshold at which to start acquiring or generating samples. Specify this value in the units of the measurement or generation. Use triggerSlope to specify on which slope to trigger at this threshold. |
Name | Type | Description |
---|---|---|
status | int32 | The error code returned by the function in the event of an error or warning. A value of 0 indicates success. A positive value indicates a warning. A negative value indicates an error. |
int32 DAQmxCfgAnlgMultiEdgeStartTrig (TaskHandle taskHandle, const char triggerSources[], int32 triggerSlopeArray[], float64 triggerLevelArray[], uInt32 arraySize);
Configures the task to start acquiring or generating samples when any of the configured analog signals cross the respective levels you specified. Multi-edge triggering treats the configured triggers as if a logical OR is applied.
Input | ||
---|---|---|
Name | Type | Description |
taskHandle | TaskHandle | The task used in this function. |
triggerSources | const char [] * | A comma-separated string specifying a list of terminals, physical channel names, or ranges of physical channels where there are an analog signals to use as the sources of the trigger. |
triggerSlopeArray | int32 [] | The array containing the slopes of the signals to start acquiring or generating samples when the respective signal crosses the specified trigger level. Each element of the array corresponds to the sources specified in triggerSources and triggerLevelArray. |
Value | Description | |
---|---|---|
DAQmx_Val_RisingSlope | Trigger on the rising slope of the signal. | |
DAQmx_Val_FallingSlope | Trigger on the falling slope of the signal. |
triggerLevelArray | float64 [] | The array containing the thresholds at which to start acquiring or generating samples. Each element of the array corresponds to the sources specified in triggerSources and triggerSlopeArray. Specify these values in the units of the measurement or generation. Use the triggerSlopeArray to specify on which slopes to trigger at the respective thresholds. |
arraySize | uInt32 | The size of triggerSlopeArray and triggerLevelArray. This must correspond to the number of sources specified in triggerSources. |
Name | Type | Description |
---|---|---|
status | int32 | The error code returned by the function in the event of an error or warning. A value of 0 indicates success. A positive value indicates a warning. A negative value indicates an error. |
int32 DAQmxCfgAnlgWindowStartTrig (TaskHandle taskHandle, const char triggerSource[], int32 triggerWhen, float64 windowTop, float64 windowBottom);
Configures the task to start acquiring or generating samples when an analog signal enters or leaves a range you specify.
Input | ||
---|---|---|
Name | Type | Description |
taskHandle | TaskHandle | The task used in this function. |
triggerSource | const char [] | The name of a virtual channel or terminal where there is an analog signal to use as the source of the trigger. For E Series devices, if you use a virtual channel, it must be the first channel in the task. The only terminal you can use for E Series devices is PFI0. |
triggerWhen | int32 | Specifies whether the task starts measuring or generating samples when the signal enters the window or when it leaves the window. Use windowBottom and windowTop to specify the limits of the window. |
Value | Description | |
---|---|---|
DAQmx_Val_EnteringWin | Trigger when the signal enters the window. | |
DAQmx_Val_LeavingWin | Trigger when the signal leaves the window. |
windowTop | float64 | The upper limit of the window. Specify this value in the units of the measurement or generation. |
windowBottom | float64 | The lower limit of the window. Specify this value in the units of the measurement or generation. |
Name | Type | Description |
---|---|---|
status | int32 | The error code returned by the function in the event of an error or warning. A value of 0 indicates success. A positive value indicates a warning. A negative value indicates an error. |
int32 DAQmxCfgDigEdgeStartTrig (TaskHandle taskHandle, const char triggerSource[], int32 triggerEdge);
Configures the task to start acquiring or generating samples on a rising or falling edge of a digital signal.
Input | ||
---|---|---|
Name | Type | Description |
taskHandle | TaskHandle | The task used in this function. |
triggerSource | const char [] | The name of a terminal where there is a digital signal to use as the source of the trigger. |
triggerEdge | int32 | Specifies on which edge of a digital signal to start acquiring or generating samples. |
Value | Description | |
---|---|---|
DAQmx_Val_Rising | Rising edge(s). | |
DAQmx_Val_Falling | Falling edge(s). |
Name | Type | Description |
---|---|---|
status | int32 | The error code returned by the function in the event of an error or warning. A value of 0 indicates success. A positive value indicates a warning. A negative value indicates an error. |
int32 DAQmxCfgDigPatternStartTrig (TaskHandle taskHandle, const char triggerSource[], const char triggerPattern[], int32 triggerWhen);
Configures a task to start acquiring or generating samples when a digital pattern is matched.
Input | ||
---|---|---|
Name | Type | Description |
taskHandle | TaskHandle | The task used in this function. |
triggerSource | const char [] | Specifies the physical channels to use for pattern matching. The order of the physical channels determines the order of the pattern. If a port is included, the order of the physical channels within the port is in ascending order. |
triggerPattern | const char [] | Specifies the digital pattern that must be met for the trigger to occur. |
triggerWhen | int32 | Specifies the conditions under which the trigger occurs. |
Value | Description | |
---|---|---|
DAQmx_Val_PatternMatches | Pattern matches | |
DAQmx_Val_PatternDoesNotMatch | Pattern does not match |
Name | Type | Description |
---|---|---|
status | int32 | The error code returned by the function in the event of an error or warning. A value of 0 indicates success. A positive value indicates a warning. A negative value indicates an error. |
int32 DAQmxCfgTimeStartTrig (TaskHandle taskHandle, CVIAbsoluteTime when, int32 timescale);
Configures the task to start acquiring or generating samples at a specified time.
Input | ||
---|---|---|
Name | Type | Description |
taskHandle | TaskHandle | The task used in this function. |
when | CVIAbsoluteTime | Specifies when to trigger. |
timescale | int32 | Specifies the start trigger timestamp time scale. |
Value | Description | |
---|---|---|
DAQmx_Val_HostTime | Use the host device. | |
DAQmx_Val_IOTime | Use the I/O device. |
Name | Type | Description |
---|---|---|
status | int32 | The error code returned by the function in the event of an error or warning. A value of 0 indicates success. A positive value indicates a warning. A negative value indicates an error. |
int32 DAQmxDisableStartTrig (TaskHandle taskHandle);
Configures the task to start acquiring or generating samples immediately upon starting the task.
Input | ||
---|---|---|
Name | Type | Description |
taskHandle | TaskHandle | The task used in this function. |
Name | Type | Description |
---|---|---|
status | int32 | The error code returned by the function in the event of an error or warning. A value of 0 indicates success. A positive value indicates a warning. A negative value indicates an error. |
int32 DAQmxCfgAnlgEdgeRefTrig (TaskHandle taskHandle, const char triggerSource[], int32 triggerSlope, float64 triggerLevel, uInt32 pretriggerSamples);
Configures the task to stop the acquisition when the device acquires all pretrigger samples, an analog signal reaches the level you specify, and the device acquires all post-trigger samples.
Input | ||
---|---|---|
Name | Type | Description |
taskHandle | TaskHandle | The task used in this function. |
triggerSource | const char [] | The name of a virtual channel or terminal where there is an analog signal to use as the source of the trigger. For E Series devices, if you use a virtual channel, it must be the only channel in the task. The only terminal you can use for E Series devices is PFI0. |
triggerSlope | int32 | Specifies on which slope of the signal the Reference Trigger occurs. |
Value | Description | |
---|---|---|
DAQmx_Val_RisingSlope | Trigger on the rising slope of the signal. | |
DAQmx_Val_FallingSlope | Trigger on the falling slope of the signal. |
triggerLevel | float64 | Specifies at what threshold to trigger. Specify this value in the units of the measurement or generation. Use triggerSlope to specify on which slope to trigger at this threshold. |
pretriggerSamples | uInt32 | The minimum number of samples per channel to acquire before recognizing the Reference Trigger. The number of posttrigger samples per channel is equal to number of samples per channel in the NI-DAQmx Timing functions minus pretriggerSamples. |
Name | Type | Description |
---|---|---|
status | int32 | The error code returned by the function in the event of an error or warning. A value of 0 indicates success. A positive value indicates a warning. A negative value indicates an error. |
int32 DAQmxCfgAnlgMultiEdgeRefTrig (TaskHandle taskHandle, const char triggerSources[], int32 triggerSlopeArray[], float64 triggerLevelArray[], uInt32 pretriggerSamples, uInt32 arraySize);
Configures the task to stop the acquisition when the device acquires all pretrigger samples, any of the configured analog signals reaches the levels you specify, and the device acquires all post-trigger samples. Multi-edge triggering treats the specified triggers as if a logical OR is applied.
Input | ||
---|---|---|
Name | Type | Description |
taskHandle | TaskHandle | The task used in this function. |
triggerSources | const char [] * | A comma-separated string specifying a list of terminals, physical channel names, or ranges of physical channels where there are an analog signals to use as the sources of the trigger. |
triggerSlopeArray | int32 [] | The array containing the slopes of the signals to start acquiring or generating samples when the respective signal crosses the specified trigger level. Each element of the array corresponds to the sources specified in triggerSources and triggerLevelArray. |
Value | Description | |
---|---|---|
DAQmx_Val_RisingSlope | Trigger on the rising slope of the signal. | |
DAQmx_Val_FallingSlope | Trigger on the falling slope of the signal. |
triggerLevelArray | float64 [] | The array containing the thresholds at which to start acquiring or generating samples. Each element of the array corresponds to the sources specified in triggerSources and triggerSlopeArray. Specify these values in the units of the measurement or generation. Use the triggerSlopeArray to specify on which slopes to trigger at the respective thresholds. |
pretriggerSamples | uInt32 | The minimum number of samples per channel to acquire before recognizing the Reference Trigger. The number of posttrigger samples per channel is equal to number of samples per channel in the NI-DAQmx Timing functions minus pretriggerSamples. |
arraySize | uInt32 | The size of triggerSlopeArray and triggerLevelArray. This must correspond to the number of sources specified in triggerSources. |
Name | Type | Description |
---|---|---|
status | int32 | The error code returned by the function in the event of an error or warning. A value of 0 indicates success. A positive value indicates a warning. A negative value indicates an error. |
int32 DAQmxCfgAnlgWindowRefTrig (TaskHandle taskHandle, const char triggerSource[], int32 triggerWhen, float64 windowTop, float64 windowBottom, uInt32 pretriggerSamples);
Configures the task to stop the acquisition when the device acquires all pretrigger samples, an analog signal enters or leaves a range you specify, and the device acquires all post-trigger samples.
Input | ||
---|---|---|
Name | Type | Description |
taskHandle | TaskHandle | The task used in this function. |
triggerSource | const char [] | The name of a virtual channel or terminal where there is an analog signal to use as the source of the trigger. For E Series devices, if you use a virtual channel, it must be the only channel in the task. The only terminal you can use for E Series devices is PFI0. |
triggerWhen | int32 | Specifies whether the Reference Trigger occurs when the signal enters the window or when it leaves the window. Use windowBottom and windowTop to specify the limits of the window. |
Value | Description | |
---|---|---|
DAQmx_Val_EnteringWin | Trigger when the signal enters the window. | |
DAQmx_Val_LeavingWin | Trigger when the signal leaves the window. |
windowTop | float64 | The upper limit of the window. Specify this value in the units of the measurement or generation. |
windowBottom | float64 | The lower limit of the window. Specify this value in the units of the measurement or generation. |
pretriggerSamples | uInt32 | The minimum number of samples per channel to acquire before recognizing the Reference Trigger. The number of posttrigger samples per channel is equal to number of samples per channel in the NI-DAQmx Timing functions minus pretriggerSamples. |
Name | Type | Description |
---|---|---|
status | int32 | The error code returned by the function in the event of an error or warning. A value of 0 indicates success. A positive value indicates a warning. A negative value indicates an error. |
int32 DAQmxCfgDigEdgeRefTrig (TaskHandle taskHandle, const char triggerSource[], int32 triggerEdge, uInt32 pretriggerSamples);
Configures the task to stop the acquisition when the device acquires all pretrigger samples, detects a rising or falling edge of a digital signal, and acquires all posttrigger samples.
Input | ||
---|---|---|
Name | Type | Description |
taskHandle | TaskHandle | The task used in this function. |
triggerSource | const char [] | Specifies the name of a terminal where there is a digital signal to use as the source of the trigger. |
triggerEdge | int32 | Specifies on which edge of the digital signal the Reference Trigger occurs. |
Value | Description | |
---|---|---|
DAQmx_Val_Rising | Rising edge(s). | |
DAQmx_Val_Falling | Falling edge(s). |
pretriggerSamples | uInt32 | The minimum number of samples per channel to acquire before recognizing the Reference Trigger. The number of posttrigger samples per channel is equal to number of samples per channel in the NI-DAQmx Timing functions minus pretriggerSamples. |
Name | Type | Description |
---|---|---|
status | int32 | The error code returned by the function in the event of an error or warning. A value of 0 indicates success. A positive value indicates a warning. A negative value indicates an error. |
int32 DAQmxCfgDigPatternRefTrig (TaskHandle taskHandle, const char triggerSource[], const char triggerPattern[], int32 triggerWhen, uInt32 pretriggerSamples);
Configures the task to stop the acquisition when the device acquires all pretrigger samples, matches or does not match a digital pattern, and acquires all posttrigger samples.
Input | ||
---|---|---|
Name | Type | Description |
taskHandle | TaskHandle | The task used in this function. |
triggerSource | const char [] | Specifies the physical channels to use for pattern matching. The order of the physical channels determines the order of the pattern. If a port is included, the order of the physical channels within the port is in ascending order. |
triggerPattern | const char [] | Specifies the digital pattern that must be met for the trigger to occur. |
triggerWhen | int32 | Specifies the conditions under which the trigger occurs. |
Value | Description | |
---|---|---|
DAQmx_Val_PatternMatches | Pattern matches | |
DAQmx_Val_PatternDoesNotMatch | Pattern does not match |
pretriggerSamples | uInt32 | The minimum number of samples per channel to acquire before recognizing the Reference Trigger. The number of posttrigger samples per channel is equal to number of samples per channel in the NI-DAQmx Timing functions minus pretriggerSamples. |
Name | Type | Description |
---|---|---|
status | int32 | The error code returned by the function in the event of an error or warning. A value of 0 indicates success. A positive value indicates a warning. A negative value indicates an error. |
int32 DAQmxDisableRefTrig (TaskHandle taskHandle);
Disables reference triggering for the measurement or generation.
Input | ||
---|---|---|
Name | Type | Description |
taskHandle | TaskHandle | The task used in this function. |
Name | Type | Description |
---|---|---|
status | int32 | The error code returned by the function in the event of an error or warning. A value of 0 indicates success. A positive value indicates a warning. A negative value indicates an error. |
int32 DAQmxCfgDigEdgeAdvTrig (TaskHandle taskHandle, const char triggerSource[], int32 triggerEdge);
Configures a switch task to advance to the next entry in a scan list on a rising or falling edge of a digital signal.
Input | ||
---|---|---|
Name | Type | Description |
taskHandle | TaskHandle | The task used in this function. |
triggerSource | const char [] | The terminal where there is a digital signal to use as the source of the trigger. |
triggerEdge | int32 | Specifies on which edge of a digital signal to advance to the next entry in the scan list. |
Value | Description | |
---|---|---|
DAQmx_Val_Rising | Rising edge(s). | |
DAQmx_Val_Falling | Falling edge(s). |
Name | Type | Description |
---|---|---|
status | int32 | The error code returned by the function in the event of an error or warning. A value of 0 indicates success. A positive value indicates a warning. A negative value indicates an error. |
int32 DAQmxDisableAdvTrig (TaskHandle taskHandle);
Disables the advance triggering for the task.
Input | ||
---|---|---|
Name | Type | Description |
taskHandle | TaskHandle | The task used in this function. |
Name | Type | Description |
---|---|---|
status | int32 | The error code returned by the function in the event of an error or warning. A value of 0 indicates success. A positive value indicates a warning. A negative value indicates an error. |
int32 DAQmxSendSoftwareTrigger (TaskHandle taskHandle, int32 triggerID);
Generates the specified software trigger.
Input | ||
---|---|---|
Name | Type | Description |
taskHandle | TaskHandle | The task used in this function. |
triggerID | int32 | Specifies which software trigger to generate. |
Value | Description | |
---|---|---|
DAQmx_Val_AdvanceTrigger | Generate the advance trigger |
Name | Type | Description |
---|---|---|
status | int32 | The error code returned by the function in the event of an error or warning. A value of 0 indicates success. A positive value indicates a warning. A negative value indicates an error. |
int32 DAQmxWaitForValidTimestamp (TaskHandle taskHandle, int32 timestampEvent, float64 timeout, CVIAbsoluteTime* timestamp);
Configures the task to start acquiring or generating samples at a specified time.
Input | ||
---|---|---|
Name | Type | Description |
taskHandle | TaskHandle | The task used in this function. |
timestampEvent | int32 | Specifies the timestamp event to wait on. |
Value | Description | |
---|---|---|
DAQmx_Val_ArmStartTrigger | Arm Start Trigger timestamp. | |
DAQmx_Val_FirstSampleTimestamp | First Sample timestamp. | |
DAQmx_Val_ReferenceTrigger | Reference Trigger timestamp. | |
DAQmx_Val_StartTrigger | Start Trigger timestamp. |
timeout | float64 | The amount of time, in seconds, to wait for a valid timestamp before timing out. If a timeout occurs, no configuration is changed. |
Output | ||
---|---|---|
Name | Type | Description |
timestamp | CVIAbsoluteTime * | A reference to the value of the timestamp. |
Name | Type | Description |
---|---|---|
status | int32 | The error code returned by the function in the event of an error or warning. A value of 0 indicates success. A positive value indicates a warning. A negative value indicates an error. |
Creating and Setting Up a gRPC Server
Session Utilities API Reference
gRPC API Differences From C API
Sharing Driver Sessions Between Clients
C API Docs
NI-DAQmx
- gRPC API Differences From C API
- Task Configuration And Control
- Channel Configuration And Creation
- Timing
- Triggering
- Read Functions
- Write Functions
- Export Hardware Signals
- Scale Configuration
- Internal Buffer Configuration
- Advanced Functions
- System Configuration
- Error Handling
- Buffer Attributes
- Calibration Info Attributes
- Channel Attributes
- Device Attributes
- Export Signal Attributes
- Persisted Channel Attributes
- Persisted Scale Attributes
- Persisted Task Attributes
- Physical Channel Attributes
- Read Attributes
- Scale Attributes
- System Attributes
- Task Attributes
- Timing Attributes
- Trigger Attributes
- Watchdog Attributes
- Write Attributes
NI-DCPOWER
- Setup Functions
- Configure Functions
- Measurement Functions
- Control Functions
- Trigger And Event
- Attribute Functions
- Query Functions
- Calibration Functions
- Utility Functions
- Supported Device
- Source Attributes
- Transient Attributes
- Voltage Attributes
- Current Attributes
- Pulse Voltage Attributes
- Pulse Current Attributes
- Cutoff Attributes
- Measurement Attributes
- Trigger Attributes Functions
- Event Attributes
- Advanced Attributes
- Inherent Ivi Attributes
- Supported Device Attributes
NI-DIGITAL PATTERN DRIVER
- Init And Close Functions
- Session Locking Functions
- Utility Functions
- Error Handling Functions
- Calibration Functions
- Attributes Functions
- Pin Map Functions
- Low Level Functions
- Low Level Action Functions
- Pin Control Functions
- Static IO Functions
- Clock Generator Functions
- Levels And Timing Functions
- TDR Functions
- PPMU Configuration Functions
- DC Voltage Functions
- DC Current Functions
- PPMU Action Functions
- Pattern Configuration Functions
- Pattern Action Functions
- History Ram Functions
- Source Memory Functions
- Capture Memory Functions
- Triggers And Events Functions
- Conditional Jump Trigger Functions
- Sequencer Flag Functions
- Sequencer Register Functions
- Match Fail Combination Functions
- Pattern Results Functions
- Sort Results Functions
- Frequency Measurement Functions
- IVI Inherent Attributes
- Specific Driver Information Attributes, Read Only
- Driver Setup Information Attributes
- Device Attributes
- Pin Control Attributes
- Level Configuration Attributes
- Trigger Configuration Attributes
- PPMU Attributes
- Patterns Attributes
- Pattern Opcode Event Attributes
- Timing Offset Attributes
- Keep Alive Attributes
- Frequency Measurement Attributes
- Clock Generator Attributes
- History RAM
- Synchronization Attributes
- TDR Endpoint Termination Attributes
NI-FGEN
- Setup Functions
- Configuration Functions
- Standard Output Functions
- Arbitrary Waveform Output Functions
- Arbitrary Sequence Output Functions
- Incremental Waveform Write Functions
- Configure Clock Functions
- Trigger And Syncronizations Functions
- 5404 Routing Functions
- Script Output Functions
- Configure Onboard Signal Processing Functions
- Configure Peer To Peer Functions
- Attribute Functions
- Waveform Control Functions
- Error Functions
- Output Attributes
- Arbitrary Waveform Attributes
- Data Transfer Attributes
- Onboard Signal Processing Attributes
- Peer To Peer Attributes
- Standard Function Attributes
- Clock Attributes
- Event Attributes
- Triggering Attributes
- Instrument Specific Attributes
- Inherent IVI Attributes
- 5401 5411 5431
NI-RFmx Bluetooth
- gRPC API Differences From C API
- General Functions
- Configuration Functions
- Set And Get Attribute Functions
- Fetch Results Functions
- Utility Functions
- Build String Functions
- Advanced Functions
- General Attributes
- Trigger Attributes
- Packet Attributes
- Auto Detect Signal Attributes
- Modacc Attributes
- ACP Attributes
- Twenty dB Attributes
- Frequency Range Attributes
- TXP Attributes
- Advanced Attributes
NI-RFmx NR
- gRPC API Differences From C API
- General Functions
- Configuration Functions
- Set And Get Attributes Functions
- Fetch Results Functions
- Utility Functions
- Build String Functions
- Advanced Functions
- General Attributes
- Trigger Attributes
- Signal Detection Attributes
- Component Carrier Attributes
- List Attributes
- Modacc Attributes
- ACP Attributes
- CHP Attributes
- OBW Attributes
- SEM Attributes
- TXP Attributes
- Pvt Attributes
- Advanced Attributes
NI-RFmx LTE
- gRPC API Differences From C API
- General Functions
- Configuration Functions
- Ch Configuration Functions
- NB IoT Configuration Functions
- ModAcc Configuration Functions
- ACP Configuration Functions
- CHP Configuration Functions
- OBW Configuration Functions
- SEM Configuration Functions
- PVT Configuration Functions
- SlotPhase Configuration Functions
- SlotPower Configuration Functions
- Set And Get Attribute Functions
- ModAcc Fetch Functions
- ACP Fetch Functions
- CHP Fetch Functions
- OBW Fetch Functions
- SEM Fetch Functions
- PVT Fetch Functions
- SlotPhase Fetch Functions
- SlotPower Fetch Functions
- Utility Functions
- Build String Functions
- Advanced Functions
- General Attributes
- Trigger Attributes
- Component Carrier Attributes
- ModAcc Attributes
- ACP Attributes
- CHP Attributes
- OBW Attributes
- SEM Attributes
- PVT Attributes
- SlotPhase Attributes
- SlotPower Attributes
- Advanced Attributes
NI-RFmx SpecAn
- gRPC API Differences From C API
- General Functions
- Configuration Functions
- Set And Get Attribute Functions
- Read Functions
- Fetch Functions
- Utility Functions
- Marker Functions
- Build String Functions
- Advanced Functions
- General Attributes
- Trigger Attributes
- ACP Attributes
- Cdf Attributes
- CHP Attributes
- Fcnt Attributes
- Harm Attributes
- OBW Attributes
- SEM Attributes
- Spectrum Attributes
- Spur Attributes
- TXP Attributes
- AMPM Attributes
- Dpd Attributes
- IQ Attributes
- IM Attributes
- NF Attributes
- Phasenoise Attributes
- PAVT Attributes
- Advanced Attributes
NI-RFmx WLAN
- gRPC API Differences From C API
- General Functions
- Configuration Functions
- Set And Get Attribute Functions
- Fetch DSSS ModAcc Functions
- Fetch OFDM ModAcc Functions
- Fetch SEM Functions
- Fetch TXP Functions
- Fetch PowerRamp Functions
- Utility Functions
- Build String Functions
- Advanced Functions
- General Attributes
- Trigger Attributes
- OFDM Attributes
- Auto Detect Signal Attributes
- DSSS ModAcc Attributes
- OFDM ModAcc Attributes
- SEM Attributes
- TXP Attributes
- PowerRamp Attributes
- Advanced Attributes
NI-RFSA
- General Functions
- Configuration Functions
- Acquisition Functions
- Utility Functions
- Calibration Functions
- General Attributes
- Vertical Attributes
- Signal Path Attributes
- Acquisition Attributes
- Acquisition Attributes
- Triggers Attributes
- Events Attributes
- Device Characteristics Attributes
- Peer To Peer Streaming Attributes
- Configuration List Attributes
- Inherent IVI Properties Attributes
- De-embedding Attributes
- Self Calibration Attributes
- Factory Calibration Attributes
- External Alignment Attributes
- Device Specific Attributes
NI-RFSG
- General Functions
- Generation Configuration
- Utility Functions
- Calibration Functions
- Arb Attributes
- Clock Attributes
- Configuration List Attributes
- De-embedding Attributes
- Device Characteristics Attributes
- Device Specific Attributes
- Events Attributes
- External Calibration Attributes
- Inherent IVI Attributes Attributes
- IQ Impairment Attributes
- Load Configurations Attributes
- Modulation Attributes
- Obsolete Attributes
- Peer To Peer Attributes
- RF Attributes
- Self Calibration Attributes
- Triggers Attributes
NI-SCOPE
- Setup Functions
- Configure Functions
- Attribute Functions
- Acquisition Functions
- Measurement Functions
- Calibrate Functions
- Utility Funcitons
- Error Handling Functions
- IVI Compliance Or Obsolete Functions
- Vertical Attributes
- Horizontal Attributes
- Trigger Attributes
- Clocking Attributes
- Synchronization Attributes
- Acquisition Attributes
- Waveform Measurements Attributes
- Onboard Signal Processing Attributes
- Peer To Peer Streaming Attributes
- Device Attributes
- IVI Or Obsolete Attributes
- Instrument Capabilities Attributes
- If Digitizer Attributes
NI-XNET
- gRPC API differences from C APIs
- General Functions
- Cluster Properties
- Database Properties
- Device Properties
- ECU Properties
- Frame Properties
- Interface Properties
- LIN Schedule Entry Properties
- LIN Schedule Properties
- PDU Properties
- Session Ethernet Properties
- Session Frame Properties
- Session Interface Properties
- Session Properties
- Session SAE J1939 Properties
- Signal Properties
- Subframe Properties
- System Properties
- IP-Stack Functions
- Socket Options
- Socket Functions