이 내용은 고객님의 설정 언어로 확인할 수 없습니다

이 내용은 다른 사용 가능한 언어로 표시됩니다. 고객님께서 사용하시는 브라우저에 텍스트 번역에 도움이되는 기능이 포함되어 있을 수 있습니다.

Difference Between Configuring the Number of Elements in a FIFO and Requesting the Depth of the FIFO

Updated May 11, 2023

Reported In

Software

  • LabVIEW FPGA Module
  • LabVIEW Full
  • LabVIEW Professional
  • LabVIEW Base
  • LabVIEW Real-Time Module

Issue Details

After I create a Target to Host FPGA FIFO in a project, I can select how many elements it will contain by right-clicking and selecting Properties (shown below):

When I open a reference to the FPGA VI on a host VI, I have options to request the depth of that FIFO via the FIFO.Configure Invoke Node (shown below):

What is the difference between these two methods, and how does it relate to the actual size of the FIFO?

Solution

A Target to Host FIFO is structured such that there are two FIFOs (or buffers) that data is sent between, via a Direct Memory Access (DMA) channel.

The first buffer exists solely on the FPGA target and is configured in the project.

The second buffer exists solely on the Host.  The depth of this buffer that can be requested via an Invoke Node on the Host VI.

The FPGA buffer will retain any data written to it on the FPGA VI, before it is streamed to the Host buffer via DMA. The streaming of the data via DMA happens automatically and cannot be configured in any way.

The Host buffer receives any data sent via DMA until that data is read out of the buffer in the Host VI.

Additional Information

If you don't specify the size of the host buffer, it will coerce to either 10,000 elements or twice the maximum number of elements that can be held in the FPGA buffer, whichever is largest.