Rtk
SCPI Commands :
[SOURce<HW>]:BB:GNSS:RTK:PASSword
[SOURce<HW>]:BB:GNSS:RTK:PORT
[SOURce<HW>]:BB:GNSS:RTK:PROTocol
[SOURce<HW>]:BB:GNSS:RTK:STATe
[SOURce<HW>]:BB:GNSS:RTK:USER
- class RtkCls[source]
Rtk commands group definition. 30 total commands, 2 Subgroups, 5 group commands
- get_password() str [source]
# SCPI: [SOURce<HW>]:BB:GNSS:RTK:PASSword value: str = driver.source.bb.gnss.rtk.get_password()
Queries the password, that belongs to the RTCM user name.
- return
password: string
- get_port() RsSmw.enums.RtkPort [source]
# SCPI: [SOURce<HW>]:BB:GNSS:RTK:PORT value: enums.RtkPort = driver.source.bb.gnss.rtk.get_port()
Sets the port number of the LAN connection.
- return
port_number: 2101| 4022| 50000
- get_protocol() RsSmw.enums.RtkProtocol [source]
# SCPI: [SOURce<HW>]:BB:GNSS:RTK:PROTocol value: enums.RtkProtocol = driver.source.bb.gnss.rtk.get_protocol()
Queries the protocol for transmitting RTK data.
- return
protocol: RTCM NTRIP/RTCM 3.3 protocol
- get_state() bool [source]
# SCPI: [SOURce<HW>]:BB:GNSS:RTK:STATe value: bool = driver.source.bb.gnss.rtk.get_state()
Activates real-time kinematics simulation.
- return
rtk_state: 1| ON| 0| OFF
- get_user() str [source]
# SCPI: [SOURce<HW>]:BB:GNSS:RTK:USER value: str = driver.source.bb.gnss.rtk.get_user()
Queries the user ID, that is the RTCM user name.
- return
user_id: string
- set_port(port_number: RsSmw.enums.RtkPort) None [source]
# SCPI: [SOURce<HW>]:BB:GNSS:RTK:PORT driver.source.bb.gnss.rtk.set_port(port_number = enums.RtkPort._2101)
Sets the port number of the LAN connection.
- param port_number
2101| 4022| 50000
- set_protocol(protocol: RsSmw.enums.RtkProtocol) None [source]
# SCPI: [SOURce<HW>]:BB:GNSS:RTK:PROTocol driver.source.bb.gnss.rtk.set_protocol(protocol = enums.RtkProtocol.RTCM)
Queries the protocol for transmitting RTK data.
- param protocol
RTCM NTRIP/RTCM 3.3 protocol
- set_state(rtk_state: bool) None [source]
# SCPI: [SOURce<HW>]:BB:GNSS:RTK:STATe driver.source.bb.gnss.rtk.set_state(rtk_state = False)
Activates real-time kinematics simulation.
- param rtk_state
1| ON| 0| OFF
Cloning the Group
# Create a clone of the original group, that exists independently
group2 = driver.source.bb.gnss.rtk.clone()
Subgroups