add Acro Trainer as flight mode to OSD

This commit is contained in:
Kiripolszky Károly 2018-07-02 15:16:51 +02:00
parent 8e9e757448
commit b5e0a82852
1 changed files with 2 additions and 0 deletions

View File

@ -583,6 +583,8 @@ static bool osdDrawSingleElement(uint8_t item)
strcpy(buff, "HOR "); strcpy(buff, "HOR ");
} else if (FLIGHT_MODE(GPS_RESCUE_MODE)) { } else if (FLIGHT_MODE(GPS_RESCUE_MODE)) {
strcpy(buff, "RESC"); strcpy(buff, "RESC");
} else if (IS_RC_MODE_ACTIVE(BOXACROTRAINER)) {
strcpy(buff, "ATRN");
} else if (isAirmodeActive()) { } else if (isAirmodeActive()) {
strcpy(buff, "AIR "); strcpy(buff, "AIR ");
} else { } else {