Skip to content

Commit 2a282f2

Browse files
committed
update docs
1 parent 8f9771f commit 2a282f2

4 files changed

Lines changed: 15 additions & 5 deletions

File tree

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020

2121
PyGPSClient is a free, open-source, multi-platform graphical GNSS/GPS testing, diagnostic and configuration application written entirely by volunteers in Python and tkinter.
2222
* Runs on any platform which supports a Python 3 interpreter (>=3.10) and tkinter (>=8.6) GUI framework, including Windows, MacOS, Linux and Raspberry Pi OS. Accommodates low resolution screens (>= 640x480) via resizable and/or scrollable panels.
23-
* Supports NMEA, UBX, SBF, QGC, RTCM3, NTRIP, SPARTN, MQTT and TTY (ASCII) protocols¹.
23+
* Supports NMEA, UBX (u-blox binary), SBF (Septentrio binary), UNI (Unicore binary), QGC (Quectel binary), RTCM3, NTRIP, SPARTN, MQTT and TTY (ASCII) protocols¹.
2424
* Capable of reading from a variety of GNSS data streams: Serial (USB / UART), Socket (TCP / UDP), binary data stream (terminal or file capture) and binary recording (e.g. u-center \*.ubx).
2525
* Provides [NTRIP](#ntripconfig) client facilities.
2626
* Can serve as an [NTRIP base station](#basestation) with an RTK-compatible receiver (e.g. u-blox ZED-F9P/ZED-X20P, Quectel LG290P/LG580P/LC29H, Septentrio Mosaic G5/X5 or Unicore UM98n).
@@ -116,7 +116,7 @@ For more comprehensive installation instructions, please refer to [INSTALLATION.
116116
1. To immediately disconnect and terminate all running threads, click Ctrl-K ("Kill Switch").
117117
1. To exit the application, click
118118
![exit icon](https://github.com/semuconsulting/PyGPSClient/blob/master/src/pygpsclient/resources/iconmonstr-door-6-24.png?raw=true), or press Ctrl-Q, or click the application window's close window icon.
119-
1. Protocols Shown - Select which protocols to display; NMEA, UBX, SBF, QGC, RTCM3, SPARTN or TTY (NB: this only changes the displayed protocols - to change the actual protocols output by the receiver, use the [UBX Configuration Dialog](#ubxconfig)).
119+
1. Protocols Shown - Select which protocols to display; NMEA, UBX (*u-blox binary*), SBF (*Septentrio binary*), UNI (*Unicore binary*), QGC (*Quectel binary*), RTCM3, SPARTN or TTY (*ASCII text*) (NB: this only changes the displayed protocols - to change the actual protocols output by the receiver, use the relevant configuration command(s)).
120120
- **NB:** Serial connection must be stopped before changing to or from TTY (terminal) protocol.
121121
- **NB:** Enabling TTY (terminal) mode will disable all other protocols.
122122
1. Console Display - Select console display format (Parsed, Binary, Hex Tabular, Hex String, Parsed+Hex Tabular - see Console Widget below).

RELEASE_NOTES.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
### RELEASE 1.6.3
44

5-
1. Add support for Unicore UNI binary data output messages via `pyunigps>=0.1.2` and `pygnssutils>=1.1.22`.
5+
1. Add support for Unicore UNI binary data output messages via `pyunigps>=0.1.3` and `pygnssutils>=1.1.22`.
66

77
### RELEASE 1.6.2
88

src/pygpsclient/init_presets.py

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -99,8 +99,18 @@
9999
"Septentrio X5 Stop RTCM output;setDataInOut,COM1, ,none",
100100
"Unicore UM98n Restore Factory Defaults CONFIRM; freset",
101101
"Unicore UM98n Save Current Configuration to NVM CONFIRM; saveconfig",
102+
"Unicore UM98n Force COLD reset CONFIRM; reset",
103+
"Unicore UM98n Enable NMEA on current port; gpgsa 1; gpgga 1; gpgll 1; gpgsv 4; gpvtg 1; gprmc 1",
104+
"Unicore UM98n Enable UNI on current port; PVTSLNB 1; SATELLITEB 4; BESTNAV 1; STADOP 1",
105+
"Unicore UM98n Query Version; version",
106+
"Unicore UM98n Query Config; config",
102107
"Unicore UM98n Stop All Output on COM1; unlog COM1",
103108
"Unicore UM98n Stop All Output on COM2; unlog COM2",
109+
"Unicore UM98n Set COM1/2 Baud Rate to 115200; config com1 115200; config com2 115200",
110+
"Unicore UM98n Set COM1/2 Baud Rate to 460800; config com1 460800; config com2 460800",
111+
"Unicore UM98n Set Rover Mode CONFIRM; mode rover; saveconfig",
112+
"Unicore UM98n Set Base Mode Survey-In CONFIRM; mode base time 60; rtcm1006 com1 10; rtcm1033 com1 10; rtcm1074 com1 1; rtcm1124 com1 1; rtcm1084 com1 1; rtcm1094 com1 1; saveconfig",
113+
"Unicore UM98n Enable B2p PPP; CONFIG PPP ENABLE B2b-PPP; CONFIG PPP CONVERGE 10 20"
104114
"Feyman IM19 Tilt Survey Setup; AT+LOAD_DEFAULT; AT+GNSS_PORT=PHYSICAL_UART2; AT+NASC_OUTPUT=UART1,ON; AT+LEVER_ARM2=0.0057,-0.0732,-0.0645; AT+CLUB_VECTOR=0,0,1.865; AT+INSTALL_ANGLE=0,180,0; AT+GNSS_CARD=OEM; AT+WORK_MODE=408; AT+CORRECT_HOLDER=ENABLE; AT+SET_PPS_EDGE=RISING; AT+AHRS=ENABLE; AT+MAG_AUTO_SAVE=ENABLE; AT+SAVE_ALL",
105115
"Feyman IM19 System reset CONFIRM; AT+SYSTEM_RESET",
106116
"Feyman IM19 Save the parameters CONFIRM; AT+SAVE_ALL",

src/pygpsclient/strings.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -25,8 +25,8 @@
2525

2626
ABOUTTXT = [
2727
f"{TITLE} is a free, open-source GNSS diagnostic and configuration",
28-
"application written entirely by volunteers in Python and tkinter.",
29-
"It supports NMEA, UBX, SBF, QGC, RTCM3, NTRIP & SPARTN protocols.",
28+
"application written entirely by volunteers in Python and tkinter. It",
29+
"supports NMEA, UBX, SBF, UNI, QGC, RTCM3, NTRIP & SPARTN protocols.",
3030
"Instructions and source code are available on GitHub at the link below.",
3131
]
3232
NA = "N/A"

0 commit comments

Comments
 (0)