File

SCPI Commands :

CONFigure:WLAN:MEASurement<instance>:TMODe:FILE:SAVE
CONFigure:WLAN:MEASurement<instance>:TMODe:FILE:DATE
class FileCls[source]

File commands group definition. 2 total commands, 0 Subgroups, 2 group commands

get_date() str[source]
# SCPI: CONFigure:WLAN:MEASurement<instance>:TMODe:FILE:DATE
value: str = driver.configure.tmode.file.get_date()

Returns the last modified date of the last saved training data file, if any.

return:

file_date: string String with a formatted date or NAV

get_save() str[source]
# SCPI: CONFigure:WLAN:MEASurement<instance>:TMODe:FILE:SAVE
value: str = driver.configure.tmode.file.get_save()

Saves the current training data to a file or queries the file name of the last saved training data file.

return:

filename: string The name of the training data file - without path but including the file extension. Training data files are saved to the directory @USERDATA/MIMOData.

set_save(filename: str) None[source]
# SCPI: CONFigure:WLAN:MEASurement<instance>:TMODe:FILE:SAVE
driver.configure.tmode.file.set_save(filename = 'abc')

Saves the current training data to a file or queries the file name of the last saved training data file.

param filename:

string The name of the training data file - without path but including the file extension. Training data files are saved to the directory @USERDATA/MIMOData.