POC-400 Series
92
COS Function Reference
SetupDICOS
Syntax
BOOL SetupDICOS(COS_INT_SETUP *lpSetup, DWORD
cbSetup);
Description
Setup Digital-Input(DI) Change-of-State(COS) interrupt
parameters.
Parameter
lpSetup [in]
A pointer to a
COS_INT_SETUP
structure that contains the
COS configuration information for the DI device.
This data structure contains the following variables:
portMask
WORD value specifies the interrupt mask for corresponding
channel(s).
edgeMode
WORD value specifies that interrupt is generated when level
change (set to 0) or on rising/falling edge (set to 1) for the
corresponding channel(s).
edgeType
WORD value specifies that interrupt is generated on rising
edge (set to 0) or falling (set to 1) edge for corresponding
channel(s). This value is neglected if
edgeMode
is set to 0 for
the corresponding channel(s).
cbSetup [in]
The length of the structure, in bytes. The caller must set this
member to size of (COS_INT_SETUP).
Return Value
TRUE
if setup successes
FALSE
if setup failed
Usage
COS_INT_SETUP setup;
memset(&setup, 0, sizeof(setup));
setup.portMask = 0x0f; // enable ch.0~3
setup.edgeMode = 0; // level
setup.edgeType = 0x00; // Lo/Hi
BOOL
bRet = SetupDICOS(&setup, sizeof(setup));
Содержание POC-400 Series
Страница 1: ...Neousys Technology Inc POC 400 Series User Manual Revision 1 0...
Страница 4: ...Table of Contents 4 GetStatusPoEPort 97 EnablePoEPort 98 DisablePoEPort 99...
Страница 16: ...POC 400 Series 16 1 3 Dimension 1 3 1 Superior View 1 3 2 Front Panel View...
Страница 17: ...POC 400 Series 17 1 3 3 Bottom View...
Страница 47: ...POC 400 Series 47 4 Gently press the card down and secure with a screw 5 Reinstall the system enclosure...
Страница 54: ...POC 400 Series 54 Bottom of the enclosure...
Страница 96: ...POC 400 Series 96 printf StopDICOS PASSED n printf npress any key to exit n system pause nul return 0...