Skip to content

Commit 4caa5f9

Browse files
author
Eric Berseth
committed
Bump firmware version to 19
1 parent eef0657 commit 4caa5f9

File tree

3 files changed

+29
-2
lines changed

3 files changed

+29
-2
lines changed

CHANGELOG.md

+27
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,30 @@
1+
## v19
2+
3+
### COMPATIBILTY
4+
5+
Must be built using device OS v3.2.0 or greater.
6+
7+
### FEATURES
8+
9+
- Added satellite diagnostics configuration to publish satellite count and mean CN0.
10+
- Updated battery model for more accurate state-of-charge
11+
12+
### ENHANCEMENTS
13+
14+
- Source can be built for device OS 3.2.0 to 6.x.
15+
16+
### BUGFIXES
17+
18+
- Fixed thermistor characteristics for more accuracy.
19+
- Fixed excessive shutdown current for GNSS ephemeris battery during shipping mode.
20+
- Fixed Ublox M8U fix stability stability check to exclude bad acquistions.
21+
22+
### OTHER CHANGES
23+
24+
- Some function and file cleanup to allow for abstraction and organization of source code.
25+
- Use of C++ templates to replace selected function pointer callbacks.
26+
27+
128
## v18
229

330
### COMPATIBILTY

config-schema.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"$schema": "https://particle.io/draft-07/schema#",
3-
"$id": "https://github.com/particle-iot/tracker-edge/releases/tag/v18",
3+
"$id": "https://github.com/particle-iot/tracker-edge/releases/tag/v19",
44
"type": "object",
55
"title": "Configuration schema for the Tracker Edge firmware from Particle",
66
"$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",

src/tracker_config.h

+1-1
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@
4646
#endif
4747

4848
#ifndef TRACKER_PRODUCT_VERSION
49-
#define TRACKER_PRODUCT_VERSION (119)
49+
#define TRACKER_PRODUCT_VERSION (19)
5050
#endif
5151

5252
#if ( SYSTEM_VERSION >= SYSTEM_VERSION_DEFAULT(4, 0, 0) )

0 commit comments

Comments
 (0)