Signaling

SCPI Commands :

[CONFigure]:SIGNaling:MCGRoup
[CONFigure]:SIGNaling:SCGRoup
[CONFigure]:SIGNaling:APMod
class SignalingCls[source]

Signaling commands group definition. 899 total commands, 16 Subgroups, 3 group commands

get_ap_mod() bool[source]
# SCPI: [CONFigure]:SIGNaling:APMod
value: bool = driver.configure.signaling.get_ap_mod()

Selects whether changes are applied automatically. Applying several commands simultaneously can be necessary to avoid call drops caused by intermediate combinations of settings.

return:

enable: - ON: If you modify settings via a command, the changes are applied immediately (known default behavior) . - OFF: Changes are not applied automatically. Use the command PROCedure:SIGNaling:APMod to apply pending changes.This behavior corresponds to a dialog box with an apply button, where you apply several changes simultaneously.

get_mc_group() str[source]
# SCPI: [CONFigure]:SIGNaling:MCGRoup
value: str = driver.configure.signaling.get_mc_group()

No command help available

return:

cell_group_name: No help available

get_sc_group() str[source]
# SCPI: [CONFigure]:SIGNaling:SCGRoup
value: str = driver.configure.signaling.get_sc_group()

No command help available

return:

cell_group_name: No help available

set_ap_mod(enable: bool) None[source]
# SCPI: [CONFigure]:SIGNaling:APMod
driver.configure.signaling.set_ap_mod(enable = False)

Selects whether changes are applied automatically. Applying several commands simultaneously can be necessary to avoid call drops caused by intermediate combinations of settings.

param enable:
  • ON: If you modify settings via a command, the changes are applied immediately (known default behavior) .

  • OFF: Changes are not applied automatically. Use the command PROCedure:SIGNaling:APMod to apply pending changes.This behavior corresponds to a dialog box with an apply button, where you apply several changes simultaneously.

Cloning the Group

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

Subgroups