TIP675-SW-42 – VxWorks Device Driver
Page 27 of 31
4.3.5 FIO_T675_DIS_EXCLK
NAME
FIO_T675_DIS_EXCLK – Disable simultaneous update feature
DESCRIPTION
This ioctl function disables the simultaneous update feature of the TIP675. After driver startup the
simultaneous update feature is disabled.
The optional argument must be set to 0.
EXAMPLE
#include
"tip675.h"
…
int
fd;
int
retval;
…
/*-------------------------------------------------
Disable simultaneous update of inputs and outputs
-------------------------------------------------*/
retval = ioctl(fd, FIO_T675_DIS_EXCLK, 0);
if (retval == ERROR)
{
/* handle function specific error conditions */
}
…
ERRORS
No function specific error codes.
SEE ALSO
ioLib, basic I/O routine - ioctl(), VxWorks Programmer's Guide: I/O System.