Update lastlat/lastlong int32 #956

This commit is contained in:
Jm Casler 2021-12-05 10:20:16 -08:00
parent e5ff49d5aa
commit 3da9c7b081

View File

@ -14,8 +14,8 @@ class PositionPlugin : public ProtobufPlugin<Position>, private concurrency::OST
uint32_t lastGpsSend = 0; uint32_t lastGpsSend = 0;
// Store the latest good lat / long // Store the latest good lat / long
uint32_t lastGpsLatitude = 0; int32_t lastGpsLatitude = 0;
uint32_t lastGpsLongitude = 0; int32_t lastGpsLongitude = 0;
/// We force a rebroadcast if the radio settings change /// We force a rebroadcast if the radio settings change
uint32_t currentGeneration = 0; uint32_t currentGeneration = 0;