diff --git a/src/main/fc/fc_msp.c b/src/main/fc/fc_msp.c index 596dbe4c50..fe1c91197f 100644 --- a/src/main/fc/fc_msp.c +++ b/src/main/fc/fc_msp.c @@ -2061,7 +2061,7 @@ static mspResult_e mspCommonProcessInCommand(uint8_t cmdMSP, sbuf_t *src) #if defined(OSD) const uint16_t value = sbufReadU16(src); - /* Get screen index, 0 is post flight statsitsics, 1 and above are in flight OSD screens */ + /* Get screen index, 0 is post flight statistics, 1 and above are in flight OSD screens */ const uint8_t screen = (sbufBytesRemaining(src) >= 1) ? sbufReadU8(src) : 1; if (screen == 0 && addr < OSD_STAT_COUNT) { diff --git a/src/main/io/osd.c b/src/main/io/osd.c index 16658509ea..20e6aedc58 100755 --- a/src/main/io/osd.c +++ b/src/main/io/osd.c @@ -620,6 +620,7 @@ void pgResetFn_osdConfig(osdConfig_t *osdProfile) osdProfile->item_pos[OSD_GPS_LAT] = OSD_POS(18, 14) | VISIBLE_FLAG; osdProfile->item_pos[OSD_GPS_LON] = OSD_POS(18, 15) | VISIBLE_FLAG; osdProfile->item_pos[OSD_MAIN_BATT_USAGE] = OSD_POS(15, 10) | VISIBLE_FLAG; + osdProfile->item_pos[OSD_ARMED_TIME] = OSD_POS(1, 2) | VISIBLE_FLAG; osdProfile->enabled_stats[OSD_STAT_MAX_SPEED] = true; osdProfile->enabled_stats[OSD_STAT_MIN_BATTERY] = true; diff --git a/src/main/io/osd.h b/src/main/io/osd.h index 0392c924de..cc39c1c60d 100755 --- a/src/main/io/osd.h +++ b/src/main/io/osd.h @@ -72,7 +72,7 @@ typedef enum { OSD_STAT_FLYTIME, OSD_STAT_ARMEDTIME, OSD_STAT_COUNT // MUST BE LAST -} osd_states_e; +} osd_stats_e; typedef enum { OSD_UNIT_IMPERIAL,