At

SCPI Commands

CONFigure:EVDO:SIGNaling<Instance>:NETWork:PILot:AT:ASSigned
CONFigure:EVDO:SIGNaling<Instance>:NETWork:PILot:AT:ACQuired
class At[source]

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

get_acquired()bool[source]
# SCPI: CONFigure:EVDO:SIGNaling<instance>:NETWork:PILot:AT:ACQuired
value: bool = driver.configure.network.pilot.at.get_acquired()

Queries if a pilot is being acquired by the AT, i.e. if the corresponding carrier is carrying traffic. Preselect the related pilot using the method RsCmwEvdoSig.Configure.Pilot.setting command.

INTRO_CMD_HELP: Note that a pilot can only be acquired by the AT if it is:

  • Activated on the cell (using method RsCmwEvdoSig.Configure.Network.Pilot.An.active)

  • Assigned to the AT (using method RsCmwEvdoSig.Configure.Network.Pilot.At.assigned )

Use method RsCmwEvdoSig.Configure.Cstatus.aflCarriers to obtain more information on the carrier states.

return

acquired_by_at: OFF | ON

get_assigned()bool[source]
# SCPI: CONFigure:EVDO:SIGNaling<instance>:NETWork:PILot:AT:ASSigned
value: bool = driver.configure.network.pilot.at.get_assigned()

Sets/gets the assignment state of a pilot. Assigning a pilot to the AT adds the pilot to the AT’s active set (managed by the AN via TrafficChannelAssignment messages) . Preselect the related pilot using the method RsCmwEvdoSig.Configure.Pilot. setting command.

return

assigned_to_at: OFF | ON A pilot can only be assigned to the AT if it is activated on the AN (see method RsCmwEvdoSig.Configure.Network.Pilot.An.active) . Note that pilot 0 cannot be unassigned. ON for pilot 0, OFF for pilots 1 and 2

set_assigned(assigned_to_at: bool)None[source]
# SCPI: CONFigure:EVDO:SIGNaling<instance>:NETWork:PILot:AT:ASSigned
driver.configure.network.pilot.at.set_assigned(assigned_to_at = False)

Sets/gets the assignment state of a pilot. Assigning a pilot to the AT adds the pilot to the AT’s active set (managed by the AN via TrafficChannelAssignment messages) . Preselect the related pilot using the method RsCmwEvdoSig.Configure.Pilot. setting command.

param assigned_to_at

OFF | ON A pilot can only be assigned to the AT if it is activated on the AN (see method RsCmwEvdoSig.Configure.Network.Pilot.An.active) . Note that pilot 0 cannot be unassigned. ON for pilot 0, OFF for pilots 1 and 2