Sconfig

SCPI Commands

CONFigure:CDMA:SIGNaling<Instance>:SCONfig:AMOC
CONFigure:CDMA:SIGNaling<Instance>:SCONfig:APCalls
class Sconfig[source]

Sconfig commands group definition. 23 total commands, 4 Sub-groups, 2 group commands

get_amoc()RsCmwCdma2kSig.enums.MocCallsAcceptMode[source]
# SCPI: CONFigure:CDMA:SIGNaling<Instance>:SCONfig:AMOC
value: enums.MocCallsAcceptMode = driver.configure.sconfig.get_amoc()

Selects the types of mobile station originated calls (MOC) that the R&S CMW accepts and specifies how it responds to an accepted or rejected MOC. See also: ‘Accept Speech Calls’

return

acc_ms_orig_call: ALL | SCL1 | FSC1 | ICAW | ICFW | ICOR | ROAW | ROFW | ROOR | BUAW | BUFW | IGNR | RERO ALL: Accept all calls SCL1: Accept only selected primary service FSC1: Force to selected primary service ICAW: Accept no calls – intercept (AWIM) ICFW: Accept no calls – intercept (FWIM) ICOR: Accept no calls – intercept (order) ROAW: Accept no calls – Reorder (AWIM) ROFW: Accept no calls – Reorder (FWIM) ROOR: Accept no calls – Reorder (order) BUAW: Accept no calls – busy (AWIM) BUFW: Accept no calls – busy (FWIM) IGNR: Accept no calls – ignore MS RERO: Accept no calls – release (RORJ)

get_ap_calls()RsCmwCdma2kSig.enums.AcceptState[source]
# SCPI: CONFigure:CDMA:SIGNaling<Instance>:SCONfig:APCalls
value: enums.AcceptState = driver.configure.sconfig.get_ap_calls()

Defines the mobile originated packet calls handling.

return

acc_packet_calls: ACCept | REJect

set_amoc(acc_ms_orig_call: RsCmwCdma2kSig.enums.MocCallsAcceptMode)None[source]
# SCPI: CONFigure:CDMA:SIGNaling<Instance>:SCONfig:AMOC
driver.configure.sconfig.set_amoc(acc_ms_orig_call = enums.MocCallsAcceptMode.ALL)

Selects the types of mobile station originated calls (MOC) that the R&S CMW accepts and specifies how it responds to an accepted or rejected MOC. See also: ‘Accept Speech Calls’

param acc_ms_orig_call

ALL | SCL1 | FSC1 | ICAW | ICFW | ICOR | ROAW | ROFW | ROOR | BUAW | BUFW | IGNR | RERO ALL: Accept all calls SCL1: Accept only selected primary service FSC1: Force to selected primary service ICAW: Accept no calls – intercept (AWIM) ICFW: Accept no calls – intercept (FWIM) ICOR: Accept no calls – intercept (order) ROAW: Accept no calls – Reorder (AWIM) ROFW: Accept no calls – Reorder (FWIM) ROOR: Accept no calls – Reorder (order) BUAW: Accept no calls – busy (AWIM) BUFW: Accept no calls – busy (FWIM) IGNR: Accept no calls – ignore MS RERO: Accept no calls – release (RORJ)

set_ap_calls(acc_packet_calls: RsCmwCdma2kSig.enums.AcceptState)None[source]
# SCPI: CONFigure:CDMA:SIGNaling<Instance>:SCONfig:APCalls
driver.configure.sconfig.set_ap_calls(acc_packet_calls = enums.AcceptState.ACCept)

Defines the mobile originated packet calls handling.

param acc_packet_calls

ACCept | REJect

Cloning the Group

# Create a clone of the original group, that exists independently
group2 = driver.configure.sconfig.clone()

Subgroups