niScope Initialize with Options
Performs the following initialization actions:
- Creates a new IVI instrument driver and optionally sets the initial state of the following session properties: Range Check, Cache, Simulate, Record Value Coercions.
- Opens a session to the device that you specify in the resource name parameter.
- Resets the instrument to a known state if the reset device parameter is set to True; refer to niScope Reset for the default state of each digitizer.
- Queries the instrument ID and verifies that it is valid for this instrument driver if the id query parameter is set to True.
- Returns an instrument handle that you use to identify the instrument in all subsequent instrument driver VI calls.
resource name specifies the device name assigned by Measurement & Automation Explorer (MAX).
Examples
For Traditional NI-DAQ devices, the syntax is DAQ::n, where n is the device number assigned by MAX, as shown in Example 1. For NI-DAQmx devices, the syntax is just the device name specified in MAX, as shown in Example 2. Typical default names for NI-DAQmx devices in MAX are Dev1 or PXI1Slot1. You can rename an NI-DAQmx device by right-clicking on he name in MAX and entering a new name. An alternative syntax for NI-DAQmx devices consists of DAQ::NI-DAQmx device name, as shown in Example 3. This naming convention allows for the use of an NI-DAQmx device in an application that was originally designed for a Traditional NI-DAQ device. For example, if the application expects DAQ::1, you can rename the NI-DAQmx device to 1 in MAX and pass in DAQ::1 for the resource name, as shown in Example 4. If you use the DAQ::n syntax and an NI-DAQmx device name already exists with that same name, the NI-DAQmx device is matched first. You can also pass in the name of an IVI logical name or an IVI virtual name configured with the IVI Configuration utility, as shown in Example 5. A logical name identifies a particular virtual instrument. A virtual name identifies a specific device and specifies the initial settings for the session.
|
|||||||||||||||||||||
id query verifies that the digitizer you initialize is one that NI-SCOPE supports. NI-SCOPE automatically performs this query, so setting this parameter is not necessary. | |||||||||||||||||||||
option string specifies initialization commands.
The following table lists the properties and the name you use in this parameter to identify the property:
Defined ValuesTRUE (1) You can use the option string to simulate a device. The DriverSetup flag specifies the model that is to be simulated and the type of the model. One example to simulate an NI PXI-5102 would be as follows: Option String: Simulate = 1, DriverSetup = Model:5102; BoardType:PXI Refer to the example niScope EX Simulated Acquisition for more information on simulation.
|
|||||||||||||||||||||
reset device specifies whether to reset the instrument during the initialization procedure.
Default Value: TRUE |
|||||||||||||||||||||
error in describes error conditions that occur before this VI runs. The default input of this cluster is no error. If an error already occurred, this VI returns the value of error in in error out. The VI runs normally only if no incoming error exists. Otherwise, the VI passes the error in value to error out. The error in cluster contains the following parameters:
| |||||||||||||||||||||
instrument handle identifies a particular instrument session. | |||||||||||||||||||||
error out contains error information. If error in indicates that an error occurred before this VI or function ran, error out contains the same error information. Otherwise, it describes the error status that this VI or function produces.
|