Skip to content

Commit

Permalink
Merge pull request #358 from Stefal/dev
Browse files Browse the repository at this point in the history
Merge v2.5.0
  • Loading branch information
Stefal authored Jan 30, 2024
2 parents 7fb248a + 0d0735e commit 12c49b1
Show file tree
Hide file tree
Showing 61 changed files with 1,777 additions and 465 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -9,3 +9,4 @@ settings.conf
test.sh
test.conf
*.FCStd1
/venv/*
25 changes: 25 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,29 @@
# Changelog
## [2.5.0] - 2024-01-30
### Added
- udev rules to create ttyGNSS port for usb connected F9P.
- Added UART connected F9P detection and configuration.
- Some scripts for using a base with a 4G Simcom A76XX modem. (Beta).
- Rules to manage rtkbase services without sudo (Bookworm or newer).
- Trying to detect the wrong cpu temp on Orange Pi Zero. #224
- Buttons and collapsing informations on the diagnostic page.
### Changed
- RTKLib upgraded to release b34i from rtklibexplorer.
- RTKBase now use a virtual environnement for the python environnement
- install.sh -> --detect-usb-gnss renamed to --detect-gnss
- Rinex conversion -> limit to 2 frequencies removed in "full" presets
- Rinex conversion -> receiver option (-TADJ=1 for ubx) is sourced from settings.conf
- Logs -> default time overlap changed from 30s to 0s
### Fixed
- More tests before copying RTKLib binaries. #313
- Skip unknown section or key when restoring settings. #336
- Fix space detection in various forms inputs.
- Fix broken form input validation patterns. #353
- Fix some issues with Orange Pi Zero images. #361
### Security
- Update of various python modules.
- Apply some restrictions on RTKBase services. #341

## [2.4.2] - 2023-11-10
### Fixed
- Pin Werkzeug module to v2.2.2 to fix dependencie failure. #330
Expand Down
12 changes: 7 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -110,12 +110,12 @@ The `install.sh` script can be used without the `--all` option to split the inst
Install gpsd and chrony to set date and time
from the gnss receiver.
-e | --detect-usb-gnss
Detect your GNSS receiver. It works only with usb-connected receiver like ZED-F9P.
-e | --detect-gnss
Detect your GNSS receiver. It works only with receiver like ZED-F9P.
-n | --no-write-port
Doesn'\''t write the detected port inside settings.conf.
Only relevant with --detect-usb-gnss argument.
Only relevant with --detect-gnss argument.
-c | --configure-gnss
Configure your GNSS receiver.
Expand Down Expand Up @@ -216,13 +216,13 @@ So, if you really want it, let's go for a manual installation with some explanat
sudo systemctl enable gpsd
```
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.
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.

1. If you didn't have already configure your gnss receiver, you must set it to output raw data:
If it's a U-Blox ZED-F9P (usb), you can use
```bash
sudo ./install.sh --detect-usb-gnss --configure-gnss
sudo ./install.sh --detect-gnss --configure-gnss
```

If it's a U-Blox ZED-F9P (uart), you can use this command (change the ttyS1 and 115200 value if needed)):
Expand Down Expand Up @@ -326,6 +326,8 @@ A gnss receiver with a timepulse output is a very accurate [stratum 0](https://e
^- kalimantan.ordimatic.net 3 6 177 16 -27ms[ -27ms] +/- 64ms

```
## Requirements:
Python >= 3.7

## History:
See the [changelog](./CHANGELOG.md)
Expand Down
2 changes: 1 addition & 1 deletion archive_and_clean.sh
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
#You can customize archive_name and archive_rotate in settings.conf

BASEDIR=$(dirname "$0")
source <( grep = ${BASEDIR}/settings.conf )
source <( grep '=' ${BASEDIR}/settings.conf )
cd ${datadir}

check_space(){
Expand Down
Binary file modified drawing/fond de panier rtkbase.FCStd
Binary file not shown.
Loading

0 comments on commit 12c49b1

Please sign in to comment.