Delay

SCPI Commands

CONFigure:BLUetooth:SIGNaling<Instance>:DELay:PTIMeout
CONFigure:BLUetooth:SIGNaling<Instance>:DELay:TMODe
class Delay[source]

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

get_ptimeout()int[source]
# SCPI: CONFigure:BLUetooth:SIGNaling<Instance>:DELay:PTIMeout
value: int = driver.configure.delay.get_ptimeout()

Sets delay for the processing of HCI commands. If set to 100 ms, maximally one HCI command is processed every 100 ms.

return

poll_timeout: integer Range: 1 ms to 100 ms , Unit: ms

get_tmode()int[source]
# SCPI: CONFigure:BLUetooth:SIGNaling<Instance>:DELay:TMODe
value: int = driver.configure.delay.get_tmode()

Specifies delay for test mode activation. The delay is applied after acknowledgment from EUT that it has received activate test mode command.

return

act_test_delay: integer Range: 1 ms to 100 ms , Unit: ms

set_ptimeout(poll_timeout: int)None[source]
# SCPI: CONFigure:BLUetooth:SIGNaling<Instance>:DELay:PTIMeout
driver.configure.delay.set_ptimeout(poll_timeout = 1)

Sets delay for the processing of HCI commands. If set to 100 ms, maximally one HCI command is processed every 100 ms.

param poll_timeout

integer Range: 1 ms to 100 ms , Unit: ms

set_tmode(act_test_delay: int)None[source]
# SCPI: CONFigure:BLUetooth:SIGNaling<Instance>:DELay:TMODe
driver.configure.delay.set_tmode(act_test_delay = 1)

Specifies delay for test mode activation. The delay is applied after acknowledgment from EUT that it has received activate test mode command.

param act_test_delay

integer Range: 1 ms to 100 ms , Unit: ms