1.1.4.37 DRV_METROLOGY_CaptureCheckIsWrap Function

C
bool DRV_METROLOGY_CaptureCheckIsWrap(void);
Summary

Capture buffer overflown and wrapped.

Description

Check if buffer used to capture samples has overflown and wrapped at least once.

Parameters

None.

Returns

True if the capture buffer has wrapped at least once.

Example
        if (DRV_METROLOGY_CaptureCheckIsWrap() == true)
        {
            SYS_CMD_MESSAGE("Waveform capture buffer is wrapped\r\n");  
        }
Remarks

None.