Quick and ugly WFM data export for Rigol DS2072A
At work I use a Rigol DS2072A oscilloscope. It's quite a featureful little two-channel digital scope that mostly does the job that I need it for. It can be buggy at times though and with experience I learned to avoid some of its features. Like for example the screenshot tool that sometimes, but not always, captures a perfectly plausible PNG that actually contains something different than what was displayed on the physical screen at the time. I'm not joking - I think there's some kind of a double-buffering issue there.
Recently I was using it to capture some waveforms that I wanted to further process on my computer. On most modern digital scopes that's a simple matter of exporting a trace to a CSV file on a USB stick. DS2072A indeed has this feature, however I soon found out that it is unbearably slow. Exporting 1.4 Msamples took nearly 6 minutes. I'm guessing exporting a full 14 Msample capture would take an hour - I've never had the patience to actually wait for one to finish and the progress indicator indeed remained pegged at 0% until I reset the scope in frustration. I planned to do many captures, so that approach was clearly unusable.
Luckily, there's also an option for a binary export that creates WFM files. Exporting to those is much faster than to the text-based CSV format, but on the other hand it creates binary blobs that apparently only the scope itself can read. I found the open source pyRigolWFM tool for reading WFM files, but unfortunately it only seems to support the DS1000 series and doesn't work with files produced by DS2072A. There's also Rigol's WFM converter, but again it only works with DS4000 and DS6000 series, so I had no luck with that either.
I noticed that the sizes of WFM files in bytes were similar to the number of samples they were supposed to contain, so I guessed extracting raw data from them wouldn't be that complicated - they can't be compressed and there are only that many ways you can shuffle bytes around. The only weird thing was that the files containing the same number of samples were all of a slightly different size. A comment on the pyRigolWFM issue tracker mentioned that the WFM files are more or less a memory dump of the scope's memory which gave me hope that their format isn't very complicated.
After some messing around in a Jupyter Notebook I came up with the following code that extracted the data I needed from WFM files into a Numpy array:
import numpy as np import struct def load_wfm(path): with open(path, 'rb') as f: header = f.read(0x200) magic = header[0x000:0x002] assert magic == b'\xa5\xa5' offset_1 = struct.unpack('<i', header[0x044:0x048])[0] offset_2 = struct.unpack('<i', header[0x048:0x04c])[0] n_samples = struct.unpack('<i', header[0x05c:0x060])[0] sample_rate = struct.unpack('<i', header[0x17c:0x180])[0] assert n_samples % 2 == 0 pagesize = n_samples//2 data = np.fromfile(path, dtype=np.uint8) t = np.arange(n_samples)/sample_rate x0 = np.empty(n_samples) # Samples are interleaved on two (?) pages x0[0::2] = data[offset_1:offset_1+pagesize] x0[1::2] = data[offset_2:offset_2+pagesize] # These will depend on attenuator settings. I'm not sure # how to read them from the file, but it's easy to guess # them manually when comparing file contents to what is # shown on the screen. n = -0.4 k = 0.2 x = x0*k + n return t, x t, x = load_wfm("Newfile1.wfm")
Basically, the file consists of a header and sample buffer. The header contains metadata about the capture, like the sample rate and number of captured samples. It also contains pointers into the buffer. Each sample in a trace is represented by one byte. I'm guessing it is a raw, unsigned 8-bit value from the ADC. That value needs to be scaled according to the attenuator and probe settings to get the measured voltage level. I didn't manage to figure out how the attenuator settings were stored in the header. I calculated the scaling constants manually, by comparing the raw values with what was displayed on the scope's screen. Since I was doing all captures at the same settings that worked for me.
I also didn't bother to completely understand the layout of the file. The code above worked for exports containing only channel 1. In all my files the samples were interleaved in two memory pages: even samples were in one page, odd samples in another. I'm not sure if that's always the case and the code obviously does not attempt to cover any other layout.
Here is a plot of the data I extracted for the trace that is shown on the photograph above:
I compared the trace data I extracted from the WFM file with the data from the CSV file that is generated by the oscilloscope's own slow CSV export function. The differences between the two are on the order of 10-15. That is most likely due to the floating point precision. For all practical purposes, the values from both exports are identical:
Anyway, I hope that's useful for anyone else that needs to extract data from these scopes. Just please be aware that is only a minimal viable solution for what I needed to do - the code will need some further hacking if you will apply it to your own files.
Hi
Nice work. This is the only thing I have seen about DS2000 waveforms!
Would you be willing to contribute some test files to the RigolWFM project so that that DS2000 series can be fully supported?
Thanks
Scott