Limit
SCPI Command :
MMEMory:STORe<n>:LIMit
- Commands in total: 1Subgroups: 0Direct child commands: 1
- class LimitStruct[source]
Response structure. Fields:
1 Filename: str: String containing the path and name of the target file.
2 Limit_Line_Name: str: Name of the limit line to be exported.
- get(store=Store.Default) LimitStruct[source]
# 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’.
- Parameters:
store – optional repeated capability selector. Default value: Pos1 (settable in the interface ‘Store’)
- Returns:
structure: for return value, see the help for LimitStruct structure arguments.
- set(filename: str, limit_line_name: str, store=Store.Default) None[source]
# 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’.
- Parameters:
filename – String containing the path and name of the target file.
limit_line_name – Name of the limit line to be exported.
store – optional repeated capability selector. Default value: Pos1 (settable in the interface ‘Store’)