Lora

SCPI Commands :

[SOURce<HW>]:BB:LORA:BWIDth
[SOURce<HW>]:BB:LORA:IINTerval
[SOURce<HW>]:BB:LORA:OSAMpling
[SOURce<HW>]:BB:LORA:PRESet
[SOURce<HW>]:BB:LORA:SLENgth
[SOURce<HW>]:BB:LORA:STATe
class LoraCls[source]

Lora commands group definition. 61 total commands, 7 Subgroups, 6 group commands

get_bandwidth() LoRaBw[source]
# SCPI: [SOURce<HW>]:BB:LORA:BWIDth
value: enums.LoRaBw = driver.source.bb.lora.get_bandwidth()

No command help available

return:

bw: No help available

get_iinterval() float[source]
# SCPI: [SOURce<HW>]:BB:LORA:IINTerval
value: float = driver.source.bb.lora.get_iinterval()

No command help available

return:

iinterval: No help available

get_osampling() int[source]
# SCPI: [SOURce<HW>]:BB:LORA:OSAMpling
value: int = driver.source.bb.lora.get_osampling()

No command help available

return:

osampling: No help available

get_slength() int[source]
# SCPI: [SOURce<HW>]:BB:LORA:SLENgth
value: int = driver.source.bb.lora.get_slength()

No command help available

return:

slength: No help available

get_state() bool[source]
# SCPI: [SOURce<HW>]:BB:LORA:STATe
value: bool = driver.source.bb.lora.get_state()

No command help available

return:

state: No help available

preset() None[source]
# SCPI: [SOURce<HW>]:BB:LORA:PRESet
driver.source.bb.lora.preset()

No command help available

preset_with_opc(opc_timeout_ms: int = -1) None[source]
# SCPI: [SOURce<HW>]:BB:LORA:PRESet
driver.source.bb.lora.preset_with_opc()

No command help available

Same as preset, but waits for the operation to complete before continuing further. Use the RsSmcv.utilities.opc_timeout_set() to set the timeout value.

param opc_timeout_ms:

Maximum time to wait in milliseconds, valid only for this call.

set_bandwidth(bw: LoRaBw) None[source]
# SCPI: [SOURce<HW>]:BB:LORA:BWIDth
driver.source.bb.lora.set_bandwidth(bw = enums.LoRaBw.BW10)

No command help available

param bw:

No help available

set_iinterval(iinterval: float) None[source]
# SCPI: [SOURce<HW>]:BB:LORA:IINTerval
driver.source.bb.lora.set_iinterval(iinterval = 1.0)

No command help available

param iinterval:

No help available

set_osampling(osampling: int) None[source]
# SCPI: [SOURce<HW>]:BB:LORA:OSAMpling
driver.source.bb.lora.set_osampling(osampling = 1)

No command help available

param osampling:

No help available

set_slength(slength: int) None[source]
# SCPI: [SOURce<HW>]:BB:LORA:SLENgth
driver.source.bb.lora.set_slength(slength = 1)

No command help available

param slength:

No help available

set_state(state: bool) None[source]
# SCPI: [SOURce<HW>]:BB:LORA:STATe
driver.source.bb.lora.set_state(state = False)

No command help available

param state:

No help available

Cloning the Group

# Create a clone of the original group, that exists independently
group2 = driver.source.bb.lora.clone()

Subgroups