Operation Mode


The operation mode of DncDataSet are shown below.

 

■DncDataSet operation mode

This mode allows DncDataSet to function as a FIFO (First In First Out) buffer.
In FIFO buffer mode, data additions always follow the last added data, and data reads from the buffer always start with the oldest data.

■Image of writing in FIFO buffer mode

 

     

 

■Image of reading in FIFO buffer mode

 

        


This mode allows DncDataSet to function as a RING buffer.
The data is written sequentially, and when data is added beyond the buffer limit, the old data is overwritten and stored.
Data is read relative to the final data position.
Please use it when you want to always acquire data and acquire values before and after some event.

 

■Image of writing in RING buffer mode

         


            * It is assumed that the buffer capacity of DncDataSet is 9 data.

 

■Image of reading in RING buffer mode

 

        

 

It is a mode that always keeps the latest value of the linked data from DncDaq.
Please use it when you simply want to acquire the linked data from the code.
* Data can be acquired/written in the image of accessing variables from properties.