Add gps location to fsi

This commit is contained in:
Jonathan Bennett 2025-06-06 23:25:53 -05:00
parent 4dde0a9202
commit 6c3f24dfe6
2 changed files with 2 additions and 0 deletions

View File

@ -1425,6 +1425,7 @@ void Screen::setFrames(FrameFocus focus)
normalFrames[numframes++] = graphics::NodeListRenderer::drawNodeListWithCompasses;
indicatorIcons.push_back(icon_list);
fsi.positions.gps = numframes;
normalFrames[numframes++] = graphics::UIRenderer::drawCompassAndLocationScreen;
indicatorIcons.push_back(icon_compass);

View File

@ -632,6 +632,7 @@ class Screen : public concurrency::OSThread
uint8_t wifi = 255;
uint8_t deviceFocused = 255;
uint8_t memory = 255;
uint8_t gps = 255;
} positions;
uint8_t frameCount = 0;