User`s guide

58
PCIS-DASK Application Hints
DO_AsyncCheck(card, &bStopped, &count);
} while (!bStopped);
DO_AsyncClear(card, &count);
Release_Card(card);
5.4.4 Pattern Generation Digital output programming Scheme
This section described the function flow typical of pattern generation for digital
output. While performing pattern generation of DO, the DO configuration
function has to be called at the beginning of your application.
DO_xxxx_Config
(xxxx means the card type,
e.g. DO_7300B_Config)
DO_PGStart
Complete pattern
generation
[Example Code Fragment]
card = Register_Card(PCI_7300A_RevB, card_number);
DO_7300B_Config (card, 16, TRIG_INT_PACER, P7300_WAIT_NO,
P7300_TERM_ON, 0, 0x40004000);
//start pattern generation
DO_PGStart (card, out_buf, 10000, 5000000);
//stop pattern generation
DO_PGStop (card);
Release_Card(card);
DO_PGStop