Fw
SCPI Commands :
SYSTem:FW:FILepath
SYSTem:FW:STARt
- Commands in total: 2Subgroups: 0Direct child commands: 2
- get_file_path() str[source]
# SYSTem:FW:FILepath value: str = driver.system.fw.get_file_path()
Sets the path and the filename of the firmware installation file.
- Returns:
file_path: String with path and filename
- set_file_path(file_path: str) None[source]
# SYSTem:FW:FILepath driver.system.fw.set_file_path(file_path = 'abc')
Sets the path and the filename of the firmware installation file.
- Parameters:
file_path – String with path and filename
- start() None[source]
# SYSTem:FW:STARt driver.system.fw.start()
Starts the firmware update. Before starting, make sure that the correct path is set with method
RsMxo.system.fw.file_path().
- start_and_wait(opc_timeout_ms: int = -1) None[source]
# SYSTem:FW:STARt driver.system.fw.start_and_wait()
Starts the firmware update. Before starting, make sure that the correct path is set with method
RsMxo.system.fw.file_path().Same as start, but waits for the operation to complete before continuing further. Use the RsMxo.utilities.opc_timeout_set() to set the timeout value.
- Parameters:
opc_timeout_ms – Maximum time to wait in milliseconds, valid only for this call.