Add Heltec T114 GPS support and fix T114 FW

This commit is contained in:
jacob.eva 2025-02-24 11:22:44 +00:00
parent 0f29d1b65e
commit 1d79b1e8a9
No known key found for this signature in database
GPG key ID: 0B92E083BBCCAA1E
6 changed files with 85 additions and 5 deletions

8
src/misc/gps.h Normal file
View file

@ -0,0 +1,8 @@
#include <TinyGPSPlus.h>
#include <SoftwareSerial.h>
#define GPS_INTERVAL 5000 // ms
unsigned long last_gps = 0;
TinyGPSPlus gps;
SoftwareSerial gps_s(PIN_GPS_RX, PIN_GPS_TX);