1
0
Fork 0
mirror of https://github.com/betaflight/betaflight.git synced 2025-07-26 01:35:41 +03:00

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

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 {