All

SCPI Command :

SENSe:LTE:SIGNaling<instance>:ELOG:ALL
class AllCls[source]

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

class GetStruct[source]

Response structure. Fields:

  • Timestamp: List[str]: string Timestamp of the entry

  • Category: List[enums.LogCategory]: INFO | WARNing | ERRor | CONTinue Category of the entry, as indicated in the main view by an icon

  • Event: List[str]: string Describes the event, e.g. ‘RRC Connection Established’

get(hres: TimeResolution = None) GetStruct[source]
# SCPI: SENSe:LTE:SIGNaling<instance>:ELOG:ALL
value: GetStruct = driver.sense.elog.all.get(hres = enums.TimeResolution.HRES)

Queries all entries of the event log. For each entry, three parameters are returned, from oldest to latest entry: {<Timestamp>, <Category>, <Event>}entry 1, {<Timestamp>, <Category>, <Event>}entry 2, …

param hres:

HRES If you omit this parameter, the timestamp resolution is 1 s (format ‘hh:mm:ss’) . If you send the value HRES, the timestamp resolution is 1 ms (format ‘hh:mm:ss.sss’) .

return:

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