Hi there happy thanksgiving:
I am using PXI 7833R card which has onboard 190K memory. I used the memory extension utility to generate some memory blocks. I have a long chain of binary numbers, now I wanna send these binary numbers to the memory.
I generated a 16K U32 memory block. To make full use of this memory block, I convert every 32 binary numbers to a U32 number first and then send the U32 number to specific memory address. When I did this on FPGA PXI 7833R card, it takes 1 tick to do this converting. (I don't like this converting time)
I am wondering if there is a way I can send the binary number directly to register not memory address. Such that I don't need to convert every 32 bit to a U32 number. (convert 32 bit to a number need a for loop and this loop will take time).
Thanks a lot.