LccType

SCPI Command :

SEARch:TRIGger:MPHY:LCCType
Commands in total: 1
Subgroups: 0
Direct child commands: 1
get(search: str) LccType[source]
# SEARch:TRIGger:MPHY:LCCType
value: enums.LccType = driver.search.trigger.mphy.lccType.get(search = 'abc')

Selects the type of LCC frame to be searched for.

Returns:

lcc_type: ANY | SLEEP | STALL | READCAP | READMFG | READVEND | WRITEATTR | PWMG0 | PWMG1 | PWMG2 | PWMG3 | PWMG4 | PWMG5 | PWMG6 | PWMG7 | HSG1A | HSG2A | HSG3A | HSG4A | HSG1B | HSG2B | HSG3B | HSG4B | RESERVED

  • ANY: All the available LCC commands.

  • SLEEP: Switches the power-saving state to ultra-low power. In this state, up to 90% power saving is achieved.

  • STALL: Switches the power-saving state to ultra-low power. In this state, up to 75% power saving is achieved.

  • READCAP: Recovers data about the OMC’s capabilities.

  • READMFG: Retrieves manufacturing ID and vendor-specific information.

  • READVEND: Retrieves the additional four delimited bytes containing vendor-specific information.

  • WRITEATTR: Sets the configuration parameters required for lane operation.

  • PWMG0 | PWMG1 | PWMG2 | PWMG3 | PWMG4 | PWMG5 | PWMG6 | PWMG7: Switches the transmission mode to the selected low-power gear.

  • HSG1A | HSG2A | HSG3A | HSG4A | HSG1B | HSG2B | HSG3B | HSG4B: Switches the transmission mode to the selected high-speed gear.

  • RESERVED: Reserved bit command. These bits are reserved for future use.

set(search: str, lcc_type: LccType) None[source]
# SEARch:TRIGger:MPHY:LCCType
driver.search.trigger.mphy.lccType.set(search = 'abc', lcc_type = enums.LccType.ANY)

Selects the type of LCC frame to be searched for.

Parameters:

lcc_type

ANY | SLEEP | STALL | READCAP | READMFG | READVEND | WRITEATTR | PWMG0 | PWMG1 | PWMG2 | PWMG3 | PWMG4 | PWMG5 | PWMG6 | PWMG7 | HSG1A | HSG2A | HSG3A | HSG4A | HSG1B | HSG2B | HSG3B | HSG4B | RESERVED

  • ANY: All the available LCC commands.

  • SLEEP: Switches the power-saving state to ultra-low power. In this state, up to 90% power saving is achieved.

  • STALL: Switches the power-saving state to ultra-low power. In this state, up to 75% power saving is achieved.

  • READCAP: Recovers data about the OMC’s capabilities.

  • READMFG: Retrieves manufacturing ID and vendor-specific information.

  • READVEND: Retrieves the additional four delimited bytes containing vendor-specific information.

  • WRITEATTR: Sets the configuration parameters required for lane operation.

  • PWMG0 | PWMG1 | PWMG2 | PWMG3 | PWMG4 | PWMG5 | PWMG6 | PWMG7: Switches the transmission mode to the selected low-power gear.

  • HSG1A | HSG2A | HSG3A | HSG4A | HSG1B | HSG2B | HSG3B | HSG4B: Switches the transmission mode to the selected high-speed gear.

  • RESERVED: Reserved bit command. These bits are reserved for future use.