ListPy
SCPI Command :
SYSTem:ERRor:LIST
- Commands in total: 1Subgroups: 0Direct child commands: 1
- class GetStruct[source]
Response structure. Fields:
1 System_Messages: str: String containing all messages in the ‘System Messages’ table.
2 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: MessageType = None) GetStruct[source]
# 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.
- Parameters:
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.
- Returns:
structure: for return value, see the help for GetStruct structure arguments.