Config
SCPI Command :
BUS<*>:DPHY:CONFig
- Commands in total: 1Subgroups: 0Direct child commands: 1
- get(bus=Bus.Default) BusDphyConfig[source]
# BUS<*>:DPHY:CONFig value: enums.BusDphyConfig = driver.bus.dphy.config.get(bus = repcap.Bus.Default)
Sets the number of data lanes and if the clock lane and low power are available.
- Parameters:
bus – optional repeated capability selector. Default value: Nr1 (settable in the interface ‘Bus’)
- Returns:
configuration: D1CN: 1 data lane, clock lane D1CL: 1 data lane, clock lane, low power D2CN: 2 data lanes, clock lane D2CL: 2 data lanes, clock lane, low power D3CN: 3 data lanes, clock lane D3NL: 3 data lanes, no clock, low power D4NN: 4 data lanes and no clock
- set(configuration: BusDphyConfig, bus=Bus.Default) None[source]
# BUS<*>:DPHY:CONFig driver.bus.dphy.config.set(configuration = enums.BusDphyConfig.D1CL, bus = repcap.Bus.Default)
Sets the number of data lanes and if the clock lane and low power are available.
- Parameters:
configuration – D1CN: 1 data lane, clock lane D1CL: 1 data lane, clock lane, low power D2CN: 2 data lanes, clock lane D2CL: 2 data lanes, clock lane, low power D3CN: 3 data lanes, clock lane D3NL: 3 data lanes, no clock, low power D4NN: 4 data lanes and no clock
bus – optional repeated capability selector. Default value: Nr1 (settable in the interface ‘Bus’)