Ginfo

SCPI Commands

SENSe:DATA:CONTrol:IMS<Ims>:GINFo
class Ginfo[source]

Ginfo commands group definition. 1 total commands, 0 Sub-groups, 1 group commands

class GetStruct[source]

Response structure. Fields:

  • Timestamp: List[str]: Timestamp of the entry as string in the format ‘hh:mm:ss’

  • Info_Type: List[enums.InfoType]: NONE | INFO | WARNing | ERRor Category of the entry NONE means that no category is assigned. If no entry at all is available, the answer is ‘’,NONE,’’.

  • Generic_Info: List[str]: Text string describing the event

get(ims=<Ims.Default: -1>)GetStruct[source]
# SCPI: SENSe:DATA:CONTrol:IMS<Suffix>:GINFo
value: GetStruct = driver.sense.data.control.ims.ginfo.get(ims = repcap.Ims.Default)

Queries all entries of the ‘General IMS Info’ area. For each entry, three parameters are returned, from oldest to latest entry: {<Timestamp>, <InfoType>, <GenericInfo>}entry 1, {<Timestamp>, <InfoType>, <GenericInfo>}entry 2, …

param ims

optional repeated capability selector. Default value: Ix1 (settable in the interface ‘Ims’)

return

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