ListPy

SCPI Command :

SYSTem:ERRor:LIST
class ListPyCls[source]

ListPy commands group definition. 1 total commands, 0 Subgroups, 1 group commands

class GetStruct[source]

Response structure. Fields:

  • System_Messages: str: String containing all messages in the ‘System Messages’ table.

  • Remote_Errors: str: Error_no| Description| Command| Date| Time Comma-separated list of errors from the ‘Remote Errors’ table, where: Error_no: device-specific error code Description: brief description of the error Command: remote command causing the error Date|Time: date and time the error occurred

get(mess_type: Optional[RsFsw.enums.MessageType] = None) GetStruct[source]
# SCPI: SYSTem:ERRor:LIST
value: GetStruct = driver.system.error.listPy.get(mess_type = enums.MessageType.REMote)

This command queries the error messages that occur during FSW operation.

param mess_type

SMSG | REMote SMSG (default) Queries the system messages which occurred during manual operation. REMote Queries the error messages that occurred during remote operation. Note: The remote error list is automatically cleared when the FSW is shut down.

return

structure: for return value, see the help for GetStruct structure arguments.