mirror of
https://github.com/MarekZegare4/MeshCore-Solo.git
synced 2026-07-26 14:58:12 +00:00
feat(ui): bump TrailStore capacity 256 → 512
8.5 min of raw 1 s samples (vs 4.25 min) — with the typical 5 m min-delta gate that's ~30 min of walking or ~10 min of cycling worth of points before the ring wraps. Cost is one 16-byte TrailPoint per slot = +4 KB RAM; nRF52840 build was at 64.7 % so ample headroom. Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
This commit is contained in:
@@ -20,7 +20,7 @@ static const uint8_t TRAIL_FLAG_SEG_START = 0x01;
|
||||
|
||||
class TrailStore {
|
||||
public:
|
||||
static const int CAPACITY = 256;
|
||||
static const int CAPACITY = 512;
|
||||
|
||||
// Fixed sampling cadence — matches the sensor manager's default GPS update
|
||||
// rate (1 s). Density is controlled by the min-delta gate (settings) rather
|
||||
|
||||
Reference in New Issue
Block a user