1
0
Fork 0
mirror of https://github.com/betaflight/betaflight.git synced 2025-07-23 16:25:31 +03:00

New OSD features (#1263)

* Add max. alt to stats

* Allow toggle of crosshair separate from AH
This commit is contained in:
Dan Nixon 2016-10-05 06:50:59 +01:00 committed by Nathan
parent 989af08c10
commit 9d4c240671
3 changed files with 71 additions and 31 deletions

View file

@ -22,6 +22,7 @@
typedef enum {
OSD_RSSI_VALUE,
OSD_MAIN_BATT_VOLTAGE,
OSD_CROSSHAIRS,
OSD_ARTIFICIAL_HORIZON,
OSD_HORIZON_SIDEBARS,
OSD_ONTIME,
@ -61,6 +62,7 @@ typedef struct {
int16_t min_voltage; // /10
int16_t max_current; // /10
int16_t min_rssi;
int16_t max_altitude;
} statistic_t;
void osdInit(void);