Hello Nick,
It sounds like you may be trying to push the envelope of what this system can do. The error -200714 is due to the fact that the computer cannot stream data from the DAQ board's FIFO to the computer memory fast enough. This makes me wonder if somehow you are configuring and running more than 6 tasks on your 6221. If so, the extra tasks would have to use interrups as the data transfer mechanism since there are only 6 available DMA channels for use by the board. Interrupts are a much slower transfer mechanism than DMA channels.
The thing that I would suggest to try to overcome this limitation would be to use data compression. The NI-DAQmx driver supports two types of compression, lossy and lossless. For more information on these types of compression and how to use them, please refer to
NI-DAQmx Professional Tools.
The second error you are getting, -200279, is due to the fact that your program is not reading the data out of the PC buffer fast enough to keep up with the acquisition. This error is much more common than the first. For more information on this error, and tips on how to work around it, please refer to
(DAQmx) Error -200279 During a Continuous, Buffered Acquisition.
I hope this information helps. Let me know if you have any questions after trying the suggestions I've given.
Best regards,