03-13-2007 03:23 PM
03-14-2007 09:05 AM
Hi,
When you say you get PDA lockup - at what point in the code? during configuration or read?
If it's during the read, then since it's finite, it will only return to the rest of the program after the read completes, so the front panel will be un-responsive during this time. Also since there's no DMA on the pcmcia slot every transfer has to be on irq so the cpu is always involved in the transfer. (i.e. are you saying your lockup last 10 seconds if it's at 100Hz, 1000 samples)
Working continuously instead of finite, you could read chunks of data, but the maximum speed will be lower than running in finite mode due to the cpu involvement, so it will depend on the spec of you PDA and what extra code you're running as to whether you can get back to the read fast enough that the onboard FIFO hasn't overflown (on the 6062 that's 8k Samples which is one of the best for this)
Otherwise, can you attach your code please?
Thanks
Sacha Emery
National Instruments (UK)
03-14-2007 02:09 PM