High Voltage SourceMeter Instrument Reference Manual Section 6:
2470-901-01 Rev. A / May 2019 6-23
Using SCPI commands to save or append buffer content to files:
Before using any of these commands, insert a USB flash drive into the USB port.
To save readings and formatted timestamps from the default buffer to a file named myData.csv on
a
U
SB flash drive, send the following command:
TRACe:SAVE "/usb1/myData.csv", "defbuffer1"
To save readings and formatted timestamps from a reading buffer named testData to a file named
myData.csv
on a USB flash drive, send the following command:
TRACe:SAVE "/usb1/myData.csv", "testData"
To append readings and formatted timestamps from a reading buffer named testData to a file
nam
ed myData.csv on a USB flash drive, send the following command:
TRACe:SAVE:APPend "/usb1/myData.csv", "testData"
To append readings and formatted timestamps from a reading buffer named testData from index 6
t
o index 10 in file named myData.csv on a USB flash drive, send the following command:
TRACe:SAVE:APPend "/usb1/myData.csv", "testData", FORM, 6, 10
Using TSP commands to save or append buffer content to files:
Before using any of these commands, insert a USB flash drive into the USB port.
To save readings from the default buffer to a file named myData.csv on a USB flash drive, send the
following command:
buffer.save(defbuffer1, "/usb1/myData.csv")
To save readings from a reading buffer named testData to a file named myData.csv on a USB
flash drive, send the following command:
buffer.save(testData, "/usb1/myData.csv")
To append readings from a reading buffer named testData with default time information to a file
named myData.csv on the USB flash drive, send the following command:
buffer.saveappend(testData, "/usb1/myData.csv")