Limit

SCPI Command :

MMEMory:STORe<n>:LIMit
class LimitCls[source]

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

class LimitStruct[source]

Response structure. Fields:

  • Filename: str: String containing the path and name of the target file.

  • Limit_Line_Name: str: Name of the limit line to be exported.

get(store=Store.Default) LimitStruct[source]
# SCPI: MMEMory:STORe<n>:LIMit
value: LimitStruct = driver.massMemory.store.limit.get(store = repcap.Store.Default)

Exports limit line data to an ASCII (CSV) file. For details on the file format see ‘Reference: limit line file format’.

param store

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

return

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

set(filename: str, limit_line_name: str, store=Store.Default) None[source]
# SCPI: MMEMory:STORe<n>:LIMit
driver.massMemory.store.limit.set(filename = 'abc', limit_line_name = 'abc', store = repcap.Store.Default)

Exports limit line data to an ASCII (CSV) file. For details on the file format see ‘Reference: limit line file format’.

param filename

String containing the path and name of the target file.

param limit_line_name

Name of the limit line to be exported.

param store

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