DNA/DNR-IRIG-650 IRIG Timing Layer
Chapter 3
33
Programming with the Low Level API
Tel: 508-921-4600
www.ueidaq.com
Vers:
4.6
Date: March 2019
DNx-IRIG-650 Chap3x.fm
© Copyright 2019
United Electronic Industries, Inc.
3.2.5
Enabling and
disabling
subsystems
Both input and output can be initialized in the enabled or disabled state. Since
all subsystems eventually synchronize to the same time it doesn’t make a
significant difference when subsystems are enabled.
To configure a subsystem in enabled state, so that it runs immediately after the
function call, set:
mode |= CT650_OUT_ENABLED;
in
DqAdv650SetTimecodeInput()
or
DqAdv650SetTimecodeOutput()
.
If subsystem needs to be configured but prevented from running, use:
mode |= CT650_OUT_DISABLED;
In the latter case, user should call
ret = DqAdv650Enable(hd, DEVN, TRUE);
to enable initialized subsystems together, and
ret = DqAdv650Enable(hd, DEVN, FALSE);
to disable them.