"i'm having a pxi-7831r listening to a digital signal initiated by the master card on the same chasis. each time it is triggered, it takes a timestamp relative to a 64bit clock counter (i used two U32 for the 64bit counter). the triggering frequency from master card is on the order of 50khz and i'll need to store all timestamps on the host computer eventually.
i'm new to fpga programming. what will be a good strategy for this problem? i'm thinking of making the fpga vi output the current timestamp to the host computer each time it is triggered, but that means it has to output two U32 integers 50000 times/s to the host vi. or should i build an array and store chunks of timestamps on the pxi and let the host vi read them o
nce a while? or anything else?"