Merge pull request #6265 from atomgomba/improvement-acro-trainer-osd

Add Acro Trainer as flight mode to OSD
This commit is contained in:
Michael Keller 2018-07-09 22:57:56 +12:00 committed by GitHub
commit 83612180fc
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 0 deletions

View File

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