mirror of
https://github.com/eried/portapack-mayhem.git
synced 2025-08-18 19:28:02 -04:00
Added logging, serial number and battery voltage display to radiosonde RX
Added decimal degrees display to geopos widget
This commit is contained in:
parent
d47f292d3a
commit
6ff8249a4f
7 changed files with 106 additions and 80 deletions
|
@ -32,8 +32,6 @@
|
|||
|
||||
namespace sonde {
|
||||
|
||||
using SN = uint64_t;
|
||||
|
||||
class Packet {
|
||||
public:
|
||||
enum class Type : uint32_t {
|
||||
|
@ -58,12 +56,12 @@ public:
|
|||
Timestamp received_at() const;
|
||||
|
||||
Type type() const;
|
||||
SN serial_number() const;
|
||||
uint32_t visible_sats() const;
|
||||
std::string serial_number() const;
|
||||
uint32_t GPS_altitude() const;
|
||||
float GPS_latitude() const;
|
||||
float GPS_longitude() const;
|
||||
std::string signature() const;
|
||||
uint32_t battery_voltage() const;
|
||||
|
||||
FormattedSymbols symbols_formatted() const;
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue