mirror of
https://github.com/torlando-tech/pyxis.git
synced 2026-07-17 03:21:57 +00:00
The top status bar's LoRa indicator was hard-disabled (`if (false && _lora_interface)`) — every render printed "--" no matter what the radio was doing. Re-enable it: SX1262Interface::get_rssi() is non-virtual on the impl class, so we drop down to the InterfaceImpl* via Interface::get() and static_cast to SX1262Interface. Also adds a third tier to the GPS readout so "module connected but no fix yet" is distinguishable from "no GPS hardware": -- muted no GPS handle, or no NMEA bytes parsed ? yellow NMEA flowing but no $GPGGA sat-count yet N colored satellite count valid Before: a TinyGPSPlus that was happily streaming $GPGSV but hadn't yet parsed a $GPGGA showed "--" indistinguishably from a missing module. The "?" tier surfaces "alive, waiting for sky." Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>