-
Notifications
You must be signed in to change notification settings - Fork 38
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
Cool stuff ... but how can I use it? #6
Comments
Hi Shu Wang, This GUI is designed to receive real-time data from GNSS-SDR over the network either locally (GNSS-SDR and GUI instances running on the same machine) or remotely (GNSS-SDR and GUI instances running on different machines). The data that is required by the GUI to work comes from GNSS-SDR via two serialization streams over UDP: the Monitor block streaming and the PVT block streaming, which are independent from each other and provide different kinds of information. In addition, the GUI provides a widget for communicating with the receiver interactive interface (Telecommand via TCP/IP) by allowing you to send special commands to GNSS-SDR.
Therefore, if you want to use the GUI, it is essential that at least you activate both serialization data streams in your GNSS-SDR receiver configuration file by following these instructions: In your configuration file, append the following lines to the
This will activate the serialized stream of PVT data to the GUI, which will let you see the position reported by the receiver on a live map as well as a charts of the reported altitude and dilution of precision. Next, add the following chunk in the
This will activate the serialized stream of data from the Monitor block to the GUI, which will let you see a table-like widget with the status of each channel accompanied by data readings of the acquisition and tracking stages. Making sure that the GUI setup matches that of the GNSS-SDR configuration file is a critical step for the connection to work. In the menu bar of the GUI go to Finally, if you want to make use of the Telecommand functionality (which is something I would recommend), append the following lines to the
And then enter the IP address and TCP port number in the widget. This will let you send commands to control the GNSS-SDR instance that you are monitoring with the GUI. Once you complete these steps you are all set. I hope this information is useful for you. |
I can't help thinking that are the preference default values of GNSS_Synchro port and Moniter_pvt port opposite? |
Hi @dengxu3,
Yes, that is correct. I mixed up the port numbers in the instructions by mistake.
Yes, you are right. I have just pushed a quick fix in 55037f5 updating the screenshot of the Preferences window. Thank you for reporting the error. Regards, |
I think this looks really cool! However, how can I use it?
Does it only need to listen to the RTCM reports? Say ... I have a GNSS measurement engine, which output RTCM report on 192.168.1.1/1234. Then, I just add this IP info to GNSS-SDR monitor and that is it, right?
The text was updated successfully, but these errors were encountered: