Skip to content

Commit 12c49b1

Browse files
authored
Merge pull request #358 from Stefal/dev
Merge v2.5.0
2 parents 7fb248a + 0d0735e commit 12c49b1

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

61 files changed

+1777
-465
lines changed

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,3 +9,4 @@ settings.conf
99
test.sh
1010
test.conf
1111
*.FCStd1
12+
/venv/*

CHANGELOG.md

Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,29 @@
11
# Changelog
2+
## [2.5.0] - 2024-01-30
3+
### Added
4+
- udev rules to create ttyGNSS port for usb connected F9P.
5+
- Added UART connected F9P detection and configuration.
6+
- Some scripts for using a base with a 4G Simcom A76XX modem. (Beta).
7+
- Rules to manage rtkbase services without sudo (Bookworm or newer).
8+
- Trying to detect the wrong cpu temp on Orange Pi Zero. #224
9+
- Buttons and collapsing informations on the diagnostic page.
10+
### Changed
11+
- RTKLib upgraded to release b34i from rtklibexplorer.
12+
- RTKBase now use a virtual environnement for the python environnement
13+
- install.sh -> --detect-usb-gnss renamed to --detect-gnss
14+
- Rinex conversion -> limit to 2 frequencies removed in "full" presets
15+
- Rinex conversion -> receiver option (-TADJ=1 for ubx) is sourced from settings.conf
16+
- Logs -> default time overlap changed from 30s to 0s
17+
### Fixed
18+
- More tests before copying RTKLib binaries. #313
19+
- Skip unknown section or key when restoring settings. #336
20+
- Fix space detection in various forms inputs.
21+
- Fix broken form input validation patterns. #353
22+
- Fix some issues with Orange Pi Zero images. #361
23+
### Security
24+
- Update of various python modules.
25+
- Apply some restrictions on RTKBase services. #341
26+
227
## [2.4.2] - 2023-11-10
328
### Fixed
429
- Pin Werkzeug module to v2.2.2 to fix dependencie failure. #330

README.md

Lines changed: 7 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -110,12 +110,12 @@ The `install.sh` script can be used without the `--all` option to split the inst
110110
Install gpsd and chrony to set date and time
111111
from the gnss receiver.
112112
113-
-e | --detect-usb-gnss
114-
Detect your GNSS receiver. It works only with usb-connected receiver like ZED-F9P.
113+
-e | --detect-gnss
114+
Detect your GNSS receiver. It works only with receiver like ZED-F9P.
115115
116116
-n | --no-write-port
117117
Doesn'\''t write the detected port inside settings.conf.
118-
Only relevant with --detect-usb-gnss argument.
118+
Only relevant with --detect-gnss argument.
119119
120120
-c | --configure-gnss
121121
Configure your GNSS receiver.
@@ -216,13 +216,13 @@ So, if you really want it, let's go for a manual installation with some explanat
216216
sudo systemctl enable gpsd
217217
```
218218

219-
1. Connect your gnss receiver to raspberry pi/orange pi/.... with usb or uart, and check which com port it uses (ttyS1, ttyAMA0, something else...). If it's a U-Blox usb receiver, you can use `sudo ./install.sh --detect-usb-gnss`. Write down the result, you may need it later.
219+
1. Connect your gnss receiver to raspberry pi/orange pi/.... with usb or uart, and check which com port it uses (ttyS1, ttyAMA0, something else...). If it's a U-Blox usb receiver, you can use `sudo ./install.sh --detect-gnss`. Write down the result, you may need it later.
220220

221221
1. If you didn't have already configure your gnss receiver, you must set it to output raw data:
222222

223223
If it's a U-Blox ZED-F9P (usb), you can use
224224
```bash
225-
sudo ./install.sh --detect-usb-gnss --configure-gnss
225+
sudo ./install.sh --detect-gnss --configure-gnss
226226
```
227227

228228
If it's a U-Blox ZED-F9P (uart), you can use this command (change the ttyS1 and 115200 value if needed)):
@@ -326,6 +326,8 @@ A gnss receiver with a timepulse output is a very accurate [stratum 0](https://e
326326
^- kalimantan.ordimatic.net 3 6 177 16 -27ms[ -27ms] +/- 64ms
327327
328328
```
329+
## Requirements:
330+
Python >= 3.7
329331

330332
## History:
331333
See the [changelog](./CHANGELOG.md)

archive_and_clean.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
#You can customize archive_name and archive_rotate in settings.conf
44

55
BASEDIR=$(dirname "$0")
6-
source <( grep = ${BASEDIR}/settings.conf )
6+
source <( grep '=' ${BASEDIR}/settings.conf )
77
cd ${datadir}
88

99
check_space(){
-8.91 KB
Binary file not shown.

0 commit comments

Comments
 (0)