MuxSupport

SCPI Commands

CONFigure:CDMA:SIGNaling<Instance>:CAPabilities:MUXSupport:FWD
CONFigure:CDMA:SIGNaling<Instance>:CAPabilities:MUXSupport:REV
class MuxSupport[source]

MuxSupport commands group definition. 2 total commands, 0 Sub-groups, 2 group commands

class FwdStruct[source]

Structure for reading output parameters. Fields:

  • Number: int: Number of the used multiplex option. Range: 0 to 99

  • Name: List[str]: Name of the forward channel (I.e. FCH)

  • State_Full: List[bool]: OFF | ON

  • State_Half: List[bool]: OFF | ON

  • State_Quarter: List[bool]: OFF | ON

  • State_Eighth: List[bool]: OFF | ON

class RevStruct[source]

Structure for reading output parameters. Fields:

  • Number: int: Number of the used multiplex option. Range: 0 to 99

  • Name: List[str]: Name of the reverse channel (I.e. FCH)

  • State_Full: List[bool]: OFF | ON

  • State_Half: List[bool]: OFF | ON

  • State_Quarter: List[bool]: OFF | ON

  • State_Eighth: List[bool]: OFF | ON

get_fwd()FwdStruct[source]
# SCPI: CONFigure:CDMA:SIGNaling<Instance>:CAPabilities:MUXSupport:FWD
value: FwdStruct = driver.configure.capabilities.muxSupport.get_fwd()

Queries MS capabilities about MUX support on the forward channel. Refer to 3GPP2 C.S0003-C. <Number>{, <Name>, <StateFull>, <StateHalf>, <StateQuarter>, <StateEighth>}..

return

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

get_rev()RevStruct[source]
# SCPI: CONFigure:CDMA:SIGNaling<Instance>:CAPabilities:MUXSupport:REV
value: RevStruct = driver.configure.capabilities.muxSupport.get_rev()

Queries MS capabilities about MUX support on the reverse channel. Refer to 3GPP2 C.S0003-C. <Number>{, <Name>, <StateFull>, <StateHalf>, <StateQuarter>, <StateEighth>}..

return

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