-
Notifications
You must be signed in to change notification settings - Fork 225
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
RTK client msg FROM ntrip server #484
Comments
Hi @g1tm4n123, I used the RTK plugin with MAVSDK-C++, but you should be able to make it work the same way with Python. If you can get the RTCM data, you need to send the information with The Ntrip client from MAVProxy here could be helpful to make sure you did not forget anything Also there was a bug in the RTK plugin here but which has been fixed since. Not sure if MAVSDK-Python already have this fix. If not, it means you need to truncated the data by yourself before to send it with the MAVSDK plugin. A good example can be found in the MAVProxy code here Let me know if it works ! |
Thanks, but I want to use only MAVSDK (Python) PX Vehicle => Linux USB port According to these simple example, I was able to solve many tasks. |
Oh, maybe MAVSDK-Python does not have the rtk plugin yet, does it? That would come with the next MAVSDK-Python release |
Indeed, which means @g1tm4n123 you need to wait for the next release or do the job with MAVSDK C++ |
See #485 |
I don't have a setup to test it 😞 |
@JonasVautherin v1.4.2 doesn't include the RTK fix yet. I will make another backported release. |
I updated #485, as soon as it's merged I can make a MAVSDK-Python release 👍 |
The MAVSDK-Python Rtk plugin should now work. This is the fix on the C++ side. You need mavsdk_server version v1.4.16 and MAVSDK-Python v1.4.8. Example how to use the Rtk Plugin in Python: rtk.py. |
can you show me an example, the use of mavsdk RTK plugin?
i connected to the vehicle on serial port and i have an ntrip server
await PXvhc.connect(system_address="serial:///dev/ttyUSB0:...")
ntrip caster xxx.xxx.xxx.xx
ntrip port 2101
ntrip mountpoint blox
ntrip username user
ntrip password pwd
Vehicle: Pixhawk
RTK rover: F9P
_setup_stub(self, channel)
channel?
send_rtcm_data(self, rtcm_data)
from ntrim to rtcm_data?
The text was updated successfully, but these errors were encountered: