From a24fd9894c98b7719d87c59d013e95bdf2a0d88a Mon Sep 17 00:00:00 2001 From: Starbeamrainbowlabs Date: Fri, 28 Jun 2019 14:11:25 +0100 Subject: [PATCH] Add todo note --- iot/main/gps.h | 1 + 1 file changed, 1 insertion(+) diff --git a/iot/main/gps.h b/iot/main/gps.h index 5da0e1a..da2cac5 100644 --- a/iot/main/gps.h +++ b/iot/main/gps.h @@ -6,6 +6,7 @@ // A lightweight struct to hold location information. // TinyGPS++ actually uses a *ton* of RAM so we can't keep the instance around as a global variable +// FUTURE: Rewrite this to use TinyGPS's integer system instead? struct GPSLocation { float lat; float lng;