Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

The next section (%%Startup Boilerplate) should not be modified, as the name implies. This section contains the code that is common to all startup files.

...

The Dorsal View (Application)

Note

The application sections are only intended for modification by developers and power-users. This documentation is provided for informational purposes only.
The application sections of the startup file are less bound to convention, and hence are more likely to be not completely/correctly described by this documentation.

Timing/Clock Setup

(warning) For developers/power-users only!
This section in

Program Startup

(warning) For developers/power-users only!

UserFcn Bindings

(warning) For developers/power-users only!

This section initializes daqjob objects used by the various programs and handles the configuration of trigger and clock functions on the DAQ boards. This section makes use of daqjob, and in some cases nimex, class method calls.

For this

Panel

%% TIMING/CLOCK SETUP
%Set up the triggering.
acqJob = daqjob('acquisition');
scopeJob = daqjob('scope');
setTriggerOrigin(acqJob, '/dev1/port0/line0');
setTriggerOrigin(scopeJob, '/dev1/port0/line0');
setTriggerDestination(acqJob, 'PFI0');
setTriggerDestination(scopeJob, 'PFI0');

Program Startup

UserFcn Bindings

The Tail

Final Comments

Like Labview
Like Version-to-version