Home > Software engineering >  How to use Tek oscilloscope save CSV format files to computer???????
How to use Tek oscilloscope save CSV format files to computer???????

Time:09-25

I have teck oscilloscope DPO4034 MDO3024, I'd like to have two oscilloscope HardCopy (hard copy) waveform in to a computer, then two days oscilloscope display of waveform in CSV format files in the computer, I don't know how to use VB6.0 by use test, hope everybody to help me, oscilloscope programming manual interpretation is as follows:
Examples
The SAVE: WAVEFORM CH1, REF1 saves the CH1 WAVEFORM in the reference memory
The location 1.
: SAVE: WAVEFORM: FILEFORMAT SPREADSHEET; SAVE: WAVEFORM ALL,
"D:/test_folder test1_all. CSV" saves all displayed waveforms
(excluding serial bus waveforms) to D:/test_folder/test1_all CSV.
: SAVe: WAVEform: FILEFormat INTERNal; SAVe: WAVEform ALL,
"D:/test_folder/test1" saves all displayed waveforms (excluding serial
Bus waveforms and digital channels for the oledata.mso models) to individual files named
D:/test_folder test1_ & lt; Wfm> Isf (for example test1_CH1. Isf).

CodePudding user response:

: SAVE: WAVEFORM: FILEFORMAT SPREADSHEET; SAVE: WAVEFORM ALL, "D:/test_folder test1_all CSV"
The above command saves all displayed waveforms (excluding serial bus waveforms) to D:/test_folder test1_all. CSV.

CodePudding user response:

Because you are using the external communication of the computer, so you want to save directly to the computer hard disk is not enough,
But can be done indirectly, is your oscilloscope with U disk, and then use the oscilloscope function of "file", what is check your U disk directory (for example directory name is: fd0:/),

HardCopy command to use: HardCopy FORMAT TIF command to define to the U disk of the graphics file FORMAT (BMPC) can also be used, and then use: HardCopy: FILENAME "111" command to define what do you want to save the file name (save out is 111. TIF), finally use: HardCopy START command to save to U disk images,

CSV file is same, also can only be saved to the U disk, as well as the upstairs said with: first SAVE: WAVEFORM: FILEFORMAT SPREADSHEET for command to set up CSV format, reoccupy: SAVE: WAVEFORM ALL, "fd0:/test1_all. CSV" command to SAVE for test1_all. CSV file, of course also is in the U disk, ALL can become CH1 and CH2 MATH1 or REF1 opened which ALL depends on you,

Above is my own experience, hope to help you (to you)!
  •  Tags:  
  • VBA
  • Related