Hexadecimal

SCPI Command:

FETCh:VSE:MEASurement<Instance>:DMR:SYMBols:HEXadecimal
READ:VSE:MEASurement<Instance>:DMR:SYMBols:HEXadecimal
class HexadecimalCls[source]

Hexadecimal 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 hexadecimal values, representing the received bit sequence. The number of values in the list equals the SymbolsNumber.

fetch() ResultData[source]
# SCPI: FETCh:VSE:MEASurement<Instance>:DMR:SYMBols:HEXadecimal
value: ResultData = driver.vse.measurement.dmr.symbols.hexadecimal.fetch()

Query the received symbols in hexadecimal format.

return:

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

read() ResultData[source]
# SCPI: READ:VSE:MEASurement<Instance>:DMR:SYMBols:HEXadecimal
value: ResultData = driver.vse.measurement.dmr.symbols.hexadecimal.read()

Query the received symbols in hexadecimal format.

return:

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