I am using LV2009 and I am trying to have a producer consumer architecture where the producer is generating an array of U8 [8] data every 1microsecond in a singel cycle timed loop.  I wand to pass this data for furthur processing to a consumer loop.  I looked at the RT FIFO but no write arrays are allowed.  What are my options?  I want the data passing to not slow down this single cycle loop (40MHZ timed)

-Convert to U64 and write

-Write to control and read local?

-Implement my own fifo

 

I am relativly new to this sort of hw sync data passing.

Thanks for any input.