Replace Alt: with CoG: and Spd: with SoG: in the Map view to better align with standard marine navigation terminology and the AIS Rx screen.
- Alt (Altitude) → CoG (Course over Ground)
- Spd (Speed) → SoG (Speed over Ground)
Rationale: AIS is primarily used for marine navigation where altitude is typically zero (sea level), while Course over Ground is essential navigation information. This change provides consistency with the AIS Rx screen which already displays CoG and SoG.
Modified files:
- firmware/application/ui/ui_geomap.hpp
- firmware/standalone/common/ui/ui_geomap.hpp
* Moved ui elements to common folder in standalone, and add screen parameters to the api v4
* pass it as a pointer, so if standalone app supports it can change
This pull requests adds a new type of external app to the firmware: The standalone app.
Pros:
Will work after an upgrade.
Size of image is only limited by shared heap size of M0 (application) (64kb total).
Cons:
No full access to all functions in the main firmware. One well defined (and versioned) API handles all communication.
The Pacman app was converted to be the first the the new kind.