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
- Commands in total: 34Subgroups: 2Direct child commands: 5
- get_password() str[source]
# [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.
- Returns:
password: string
- get_port() RtkPort[source]
# [SOURce<HW>]:BB:GNSS:RTK:PORT value: enums.RtkPort = driver.source.bb.gnss.rtk.get_port()
Sets the port number of the LAN connection.
- Returns:
port_number: 2101 | 4022 | 50000
- get_protocol() RtkProtocol[source]
# [SOURce<HW>]:BB:GNSS:RTK:PROTocol value: enums.RtkProtocol = driver.source.bb.gnss.rtk.get_protocol()
Queries the protocol for transmitting RTK data.
- Returns:
protocol: RTCM NTRIP/RTCM 3.3 protocol
- get_state() bool[source]
# [SOURce<HW>]:BB:GNSS:RTK:STATe value: bool = driver.source.bb.gnss.rtk.get_state()
Activates real-time kinematics simulation.
- Returns:
rtk_state: 1 | ON | 0| OFF
- get_user() str[source]
# [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.
- Returns:
user_id: string
- set_port(port_number: RtkPort) None[source]
# [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.
- Parameters:
port_number – 2101 | 4022 | 50000
- set_protocol(protocol: RtkProtocol) None[source]
# [SOURce<HW>]:BB:GNSS:RTK:PROTocol driver.source.bb.gnss.rtk.set_protocol(protocol = enums.RtkProtocol.RTCM)
Queries the protocol for transmitting RTK data.
- Parameters:
protocol – RTCM NTRIP/RTCM 3.3 protocol
- set_state(rtk_state: bool) None[source]
# [SOURce<HW>]:BB:GNSS:RTK:STATe driver.source.bb.gnss.rtk.set_state(rtk_state = False)
Activates real-time kinematics simulation.
- Parameters:
rtk_state – 1 | ON | 0| OFF
Cloning the Group
# Create a copy of the original group, that exists independently
rtk_copy = driver.source.bb.gnss.rtk.clone()
Subgroups