Skip to content
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

Release v19 #8

Merged
merged 2 commits into from
Sep 24, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/compile.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ jobs:
compile:
strategy:
matrix:
device-os-version: [ '4.x', '5.x' ]
device-os-version: [ '3.x', '4.x', '5.x' ]
runs-on: ubuntu-latest
steps:
- name: Checkout code
Expand Down
27 changes: 27 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,30 @@
## v19

### COMPATIBILTY

Must be built using device OS v3.2.0 or greater.

### FEATURES

- Added satellite diagnostics configuration to publish satellite count and mean CN0.
- Updated battery model for more accurate state-of-charge

### ENHANCEMENTS

- Source can be built for device OS 3.2.0 to 6.x.

### BUGFIXES

- Fixed thermistor characteristics for more accuracy.
- Fixed excessive shutdown current for GNSS ephemeris battery during shipping mode.
- Fixed Ublox M8U fix stability stability check to exclude bad acquistions.

### OTHER CHANGES

- Some function and file cleanup to allow for abstraction and organization of source code.
- Use of C++ templates to replace selected function pointer callbacks.


## v18

### COMPATIBILTY
Expand Down
2 changes: 1 addition & 1 deletion config-schema.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"$schema": "https://particle.io/draft-07/schema#",
"$id": "https://github.com/particle-iot/tracker-edge/releases/tag/v18",
"$id": "https://github.com/particle-iot/tracker-edge/releases/tag/v19",
"type": "object",
"title": "Configuration schema for the Tracker Edge firmware from Particle",
"$comment": "the $id field doesn't strictly mean that this schema only works with that release of tracker-edge, rather, this means that the schema here was created for that version of tracker-edge, and will work on earlier and later versions until a new schema is required. This means that schema v10 will work with firmware v11, as long as there's no added features in v11 not already mentioned here",
Expand Down
2 changes: 1 addition & 1 deletion src/tracker_config.h
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@
#endif

#ifndef TRACKER_PRODUCT_VERSION
#define TRACKER_PRODUCT_VERSION (119)
#define TRACKER_PRODUCT_VERSION (19)
#endif

#if ( SYSTEM_VERSION >= SYSTEM_VERSION_DEFAULT(4, 0, 0) )
Expand Down
Loading