LabWindows/CVI

cancel
Showing results for 
Search instead for 
Did you mean: 

How do I configure the NI-6534 to send and receive on an internal clock?

How do I configure the NI-6534 to send and receive on an internal clock? I am currently trying (without success) this way:

// Initialize the board
iStatus = Init_DA_Brds(iDevice, &iBoardType);

// Configure input group
iStatus = DIG_Grp_Config(1, 1, 2, 0, 0);

// Configure input Pattern Generation properties
iStatus = DIG_Block_PG_Config(1,1, 2, 0, -3, 2, 0);

// Configure output group
iStatus = DIG_Grp_Config(1, 2, 2, 2, 1);

// Configure output Pattern Generation properties
iStatus = DIG_Block_PG_Config(1,2, 2, 0, -3, 2, 0);
0 Kudos
Message 1 of 4
(3,401 Views)
Greg,

Have you examined the following examples:

Digital Output
C:\Program Files\National Instruments\CVI70\samples\daq\do
-----------------------------------
Finite
DOsingleBufPatternGen653x.PRJ

Continuous
DOdoubleBufPatternGen653x.PRJ
-----------------------------------

Digital Input
C:\Program Files\National Instruments\CVI70\samples\daq\di
-----------------------------------
Finite
DIsingleBufPatternGen653x.PRJ

Continuous
DIdoubleBufPatternGen653x.PRJ
-----------------------------------

These examples perform internally-clocked digital output and digital input operations.

Good luck with your application.

Spencer S.
0 Kudos
Message 2 of 4
(3,401 Views)
I have looked at all of these and more. None of them do simultaneous I/O. I have tried to combine them to do simultaneous I/O without success. None of the NI application engineers seem to be able to do it either (at least not yet).
0 Kudos
Message 3 of 4
(3,401 Views)
Greg,

How about this one?
0 Kudos
Message 4 of 4
(3,401 Views)