TypePy
SCPI Command :
MMEMory:STORe:TYPE
- Commands in total: 1Subgroups: 0Direct child commands: 1
- get() StoreType[source]
# MMEMory:STORe:TYPE value: enums.StoreType = driver.massMemory.store.typePy.get()
This command defines whether the data from the entire instrument or only from the current channel is stored with the subsequent MMEM:STOR… command.
- Returns:
type_py: INSTrument | CHANnel INSTrument Stores data from the entire instrument. CHANnel Stores data from an individual channel.
- set(type_py: StoreType) None[source]
# MMEMory:STORe:TYPE driver.massMemory.store.typePy.set(type_py = enums.StoreType.CHANnel)
This command defines whether the data from the entire instrument or only from the current channel is stored with the subsequent MMEM:STOR… command.
- Parameters:
type_py – INSTrument | CHANnel INSTrument Stores data from the entire instrument. CHANnel Stores data from an individual channel.