Clmn

SCPI Command :

BUS<*>:CMSB:FRAMe<*>:CELL<*>:CLMN
Commands in total: 1
Subgroups: 0
Direct child commands: 1
get(bus=Bus.Default, busFrameNull=BusFrameNull.Default, busCellNull=BusCellNull.Default) Column[source]
# BUS<*>:CMSB:FRAMe<*>:CELL<*>:CLMN
value: enums.Column = driver.bus.cmsb.frame.cell.clmn.get(bus = repcap.Bus.Default, busFrameNull = repcap.BusFrameNull.Default, busCellNull = repcap.BusCellNull.Default)

Selects which cell shall be displayed in which result column of the decode table. The decode table supports three result columns, which have to be unique for each frame type. For different frame types, though, different result columns can be defined to display unrelated information.

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:

column: NONE | COL1 | COL2 | COL3

  • NONE: The result is not displayed in the decode table.

  • COL1: The result is displayed in column 1 of the decode table.

  • COL2: The result is displayed in column 2 of the decode table.

  • COL3: The result is displayed in column 3 of the decode table.

set(column: Column, bus=Bus.Default, busFrameNull=BusFrameNull.Default, busCellNull=BusCellNull.Default) None[source]
# BUS<*>:CMSB:FRAMe<*>:CELL<*>:CLMN
driver.bus.cmsb.frame.cell.clmn.set(column = enums.Column.COL1, bus = repcap.Bus.Default, busFrameNull = repcap.BusFrameNull.Default, busCellNull = repcap.BusCellNull.Default)

Selects which cell shall be displayed in which result column of the decode table. The decode table supports three result columns, which have to be unique for each frame type. For different frame types, though, different result columns can be defined to display unrelated information.

Parameters:
  • column

    NONE | COL1 | COL2 | COL3

    • NONE: The result is not displayed in the decode table.

    • COL1: The result is displayed in column 1 of the decode table.

    • COL2: The result is displayed in column 2 of the decode table.

    • COL3: The result is displayed in column 3 of the decode table.

  • 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’)