Cid

SCPI Commands

CONFigure:CDMA:SIGNaling<Instance>:NETWork:CINDicator:CID:ENABle
CONFigure:CDMA:SIGNaling<Instance>:NETWork:CINDicator:CID:PINDicator
CONFigure:CDMA:SIGNaling<Instance>:NETWork:CINDicator:CID
class Cid[source]

Cid commands group definition. 3 total commands, 0 Sub-groups, 3 group commands

get_enable()bool[source]
# SCPI: CONFigure:CDMA:SIGNaling<Instance>:NETWork:CINDicator:CID:ENABle
value: bool = driver.configure.network.cindicator.cid.get_enable()

Enables or disables the caller ID insertion. If enabled, the ‘Caller ID’ (method RsCmwCdma2kSig.Configure.Network. Cindicator.Cid.value) is transferred immediately after the ‘Alerting’ message. In addition, it can be sent during an established call using the call waiting indicator parameter.

return

caller_id_enable: OFF | ON

get_pindicator()RsCmwCdma2kSig.enums.CallerIdPresentation[source]
# SCPI: CONFigure:CDMA:SIGNaling<Instance>:NETWork:CINDicator:CID:PINDicator
value: enums.CallerIdPresentation = driver.configure.network.cindicator.cid.get_pindicator()

Sets/gets the presentation indicator for the caller ID (calling party number) , i.e. specifies how the MS under test displays the caller ID received from the R&S CMW:

return

caller_id_pres_ind: PAL | PRES | NNAV PAL: Presentation allowed PRES: Presentation restricted NNAV: Number not available

get_value()str[source]
# SCPI: CONFigure:CDMA:SIGNaling<Instance>:NETWork:CINDicator:CID
value: str = driver.configure.network.cindicator.cid.get_value()

Sets/gets the caller ID also known as calling party number (CPN) . It is the number of a (virtual) calling party that the R&S CMW sends to the MS to test whether it is properly displayed.

return

caller_id: A string consisting of decimal digits Range: max. 32 characters

set_enable(caller_id_enable: bool)None[source]
# SCPI: CONFigure:CDMA:SIGNaling<Instance>:NETWork:CINDicator:CID:ENABle
driver.configure.network.cindicator.cid.set_enable(caller_id_enable = False)

Enables or disables the caller ID insertion. If enabled, the ‘Caller ID’ (method RsCmwCdma2kSig.Configure.Network. Cindicator.Cid.value) is transferred immediately after the ‘Alerting’ message. In addition, it can be sent during an established call using the call waiting indicator parameter.

param caller_id_enable

OFF | ON

set_pindicator(caller_id_pres_ind: RsCmwCdma2kSig.enums.CallerIdPresentation)None[source]
# SCPI: CONFigure:CDMA:SIGNaling<Instance>:NETWork:CINDicator:CID:PINDicator
driver.configure.network.cindicator.cid.set_pindicator(caller_id_pres_ind = enums.CallerIdPresentation.NNAV)

Sets/gets the presentation indicator for the caller ID (calling party number) , i.e. specifies how the MS under test displays the caller ID received from the R&S CMW:

param caller_id_pres_ind

PAL | PRES | NNAV PAL: Presentation allowed PRES: Presentation restricted NNAV: Number not available

set_value(caller_id: str)None[source]
# SCPI: CONFigure:CDMA:SIGNaling<Instance>:NETWork:CINDicator:CID
driver.configure.network.cindicator.cid.set_value(caller_id = '1')

Sets/gets the caller ID also known as calling party number (CPN) . It is the number of a (virtual) calling party that the R&S CMW sends to the MS to test whether it is properly displayed.

param caller_id

A string consisting of decimal digits Range: max. 32 characters