SoSupport

SCPI Commands

CONFigure:CDMA:SIGNaling<Instance>:CAPabilities:SOSupport:FFCH
CONFigure:CDMA:SIGNaling<Instance>:CAPabilities:SOSupport:RFCH
class SoSupport[source]

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

class FfchStruct[source]

Structure for reading output parameters. Fields:

  • Number: int: Service option number. Range: 0 to 99

  • Name: List[str]: Service option name.

  • State: List[bool]: OFF | ON

class RfchStruct[source]

Structure for reading output parameters. Fields:

  • Number: int: Service option number. Range: 0 to 99

  • Name: List[str]: Service option name.

  • State: List[bool]: OFF | ON

get_ffch()FfchStruct[source]
# SCPI: CONFigure:CDMA:SIGNaling<Instance>:CAPabilities:SOSupport:FFCH
value: FfchStruct = driver.configure.capabilities.soSupport.get_ffch()

Queries which service options the MS supports on the forward fundamental channel. Returns the supported service option in the form <Number>{, <Name>, <State>}… for all supported service options (see ‘Service Options ‘) .

return

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

get_rfch()RfchStruct[source]
# SCPI: CONFigure:CDMA:SIGNaling<Instance>:CAPabilities:SOSupport:RFCH
value: RfchStruct = driver.configure.capabilities.soSupport.get_rfch()

Queries which service options the MS supports on the reverse fundamental channel. Returns the supported service option in the form <Number>{, <Name>, <State>}… for all supported service options (see ‘Service Options ‘) .

return

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