a "safe" buffer when half has been acquired or can I access directly the DIG_Block_In() target buffer (at my own risk) ? Is there a way to monitor the actual input pointer position in that buffer ? Is the DIG_DB_Transfer() source code available somewhere ?You can access the data directly from the buffer you pass in DIG_Block_In(). Since you are not calling DIG_DB_Transfer(), you need to turn off the oldDataStop parameter in DIG_DB_Config() so you will not get a buffer overflow error.
To monitor the input pointer, you can call DIG_Block_Check(), which returns the number of points remaining for the acquisition to get to the end of the buffer. For example, if your buffer can fit 1000 samples, and the device is about to write to the 800th sample, DIG_Block_Check() will return 200.
The DIG_DB_Transfer() source code is not available anywhere.