BitOrder
SCPI Command :
BUS<*>:CMSB:FRAMe<*>:CELL<*>:BITorder
- Commands in total: 1Subgroups: 0Direct child commands: 1
- get(bus=Bus.Default, busFrameNull=BusFrameNull.Default, busCellNull=BusCellNull.Default) BusBitOrder[source]
# BUS<*>:CMSB:FRAMe<*>:CELL<*>:BITorder value: enums.BusBitOrder = driver.bus.cmsb.frame.cell.bitOrder.get(bus = repcap.Bus.Default, busFrameNull = repcap.BusFrameNull.Default, busCellNull = repcap.BusCellNull.Default)
Selects in which order the bits of a cell are evaluated, as well as presented in the results table and honeycomb display.
- Parameters:
bus – optional repeated capability selector. Default value: Nr1 (settable in the interface ‘Bus’)
busFrameNull – optional repeated capability selector. Default value: Nr0 (settable in the interface ‘Frame’)
busCellNull – optional repeated capability selector. Default value: Nr0 (settable in the interface ‘Cell’)
- Returns:
bit_order: LSBF | MSBF
LSBF: Least significant bit first, evaluation starts at the LSB
MSBF: Most significant bit first, evaluation starts at the MSB
- set(bit_order: BusBitOrder, bus=Bus.Default, busFrameNull=BusFrameNull.Default, busCellNull=BusCellNull.Default) None[source]
# BUS<*>:CMSB:FRAMe<*>:CELL<*>:BITorder driver.bus.cmsb.frame.cell.bitOrder.set(bit_order = enums.BusBitOrder.LSBF, bus = repcap.Bus.Default, busFrameNull = repcap.BusFrameNull.Default, busCellNull = repcap.BusCellNull.Default)
Selects in which order the bits of a cell are evaluated, as well as presented in the results table and honeycomb display.
- Parameters:
bit_order –
LSBF | MSBF
LSBF: Least significant bit first, evaluation starts at the LSB
MSBF: Most significant bit first, evaluation starts at the MSB
bus – optional repeated capability selector. Default value: Nr1 (settable in the interface ‘Bus’)
busFrameNull – optional repeated capability selector. Default value: Nr0 (settable in the interface ‘Frame’)
busCellNull – optional repeated capability selector. Default value: Nr0 (settable in the interface ‘Cell’)