Binary

SCPI Command:

FETCh:VSE:MEASurement<Instance>:DPMR:SYMBols:BINary
READ:VSE:MEASurement<Instance>:DPMR:SYMBols:BINary
class BinaryCls[source]

Binary commands group definition. 2 total commands, 0 Subgroups, 2 group commands

class ResultData[source]

Response structure. Fields:

  • Reliability: int: See ‘Reliability indicator values’

  • Symbols_Number: int: Number of values in Symbols.

  • Symbols: List[str]: Comma-separated list of binary values, representing the received bit sequence. The number of values in the list equals the SymbolsNumber.

fetch() ResultData[source]
# SCPI: FETCh:VSE:MEASurement<Instance>:DPMR:SYMBols:BINary
value: ResultData = driver.vse.measurement.dpmr.symbols.binary.fetch()

Query the received symbols in binary format.

return:

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

read() ResultData[source]
# SCPI: READ:VSE:MEASurement<Instance>:DPMR:SYMBols:BINary
value: ResultData = driver.vse.measurement.dpmr.symbols.binary.read()

Query the received symbols in binary format.

return:

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