I want to continously output analog data with a PCI-6733 card, using register level programming. An application feeds data into the driver continously.
My first (rough) concept is this:
1. Set frequency
2. Set buffer size (UC) to FIFO size (Does it matter?)
3. Set iterations (BC) to 0 (Or any other number? Does it matter?)
4. Set AO_continuous to 1
5. Start output, interrupts on FIFO half full
6. When interrupt occurs, write more data to FIFO until FIFO is full again
Will that method do what I want?