Connection

SCPI Commands

CONFigure:EVDO:SIGNaling<Instance>:LAYer:CONNection:ROMessages
CONFigure:EVDO:SIGNaling<Instance>:LAYer:CONNection:PDTHreshold
CONFigure:EVDO:SIGNaling<Instance>:LAYer:CONNection:RLFoffset
class Connection[source]

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

get_pd_threshold()float[source]
# SCPI: CONFigure:EVDO:SIGNaling<instance>:LAYer:CONNection:PDTHreshold
value: float = driver.configure.layer.connection.get_pd_threshold()

Defines the pilot power (relative to the total 1xEV-DO power) below which the AT starts the pilot supervision timer and eventually announces that it has lost the network connection.

return

pd_threshold: Range: -31.5 dB to 0 dB, Unit: dB

get_rlf_offset()int[source]
# SCPI: CONFigure:EVDO:SIGNaling<instance>:LAYer:CONNection:RLFoffset
value: int = driver.configure.layer.connection.get_rlf_offset()

Delays the reverse traffic data channel and reverse rate indicator channel (RRI) transmissions of the AT by an integer number of slots related to the system time-aligned frame boundary.

return

rlf_offset: Range: 0 to 15

get_ro_messages()bool[source]
# SCPI: CONFigure:EVDO:SIGNaling<instance>:LAYer:CONNection:ROMessages
value: bool = driver.configure.layer.connection.get_ro_messages()

Sets the ‘redirect’ bit in the QuickConfig message of the overhead messages protocol to ‘1’.

return

ro_messages: OFF | ON

set_pd_threshold(pd_threshold: float)None[source]
# SCPI: CONFigure:EVDO:SIGNaling<instance>:LAYer:CONNection:PDTHreshold
driver.configure.layer.connection.set_pd_threshold(pd_threshold = 1.0)

Defines the pilot power (relative to the total 1xEV-DO power) below which the AT starts the pilot supervision timer and eventually announces that it has lost the network connection.

param pd_threshold

Range: -31.5 dB to 0 dB, Unit: dB

set_rlf_offset(rlf_offset: int)None[source]
# SCPI: CONFigure:EVDO:SIGNaling<instance>:LAYer:CONNection:RLFoffset
driver.configure.layer.connection.set_rlf_offset(rlf_offset = 1)

Delays the reverse traffic data channel and reverse rate indicator channel (RRI) transmissions of the AT by an integer number of slots related to the system time-aligned frame boundary.

param rlf_offset

Range: 0 to 15

set_ro_messages(ro_messages: bool)None[source]
# SCPI: CONFigure:EVDO:SIGNaling<instance>:LAYer:CONNection:ROMessages
driver.configure.layer.connection.set_ro_messages(ro_messages = False)

Sets the ‘redirect’ bit in the QuickConfig message of the overhead messages protocol to ‘1’.

param ro_messages

OFF | ON