Add lockout mode.

This commit is contained in:
Jonathan Naylor
2016-03-03 18:01:01 +00:00
parent 944192f246
commit 560433e7ef
9 changed files with 62 additions and 6 deletions

View File

@@ -90,6 +90,24 @@ void CTFTSerial::setIdle()
// Draw all mode insignias
displayBitmap(0U, 30U, "ALL_sm.bmp");
gotoPosText(0U, 8U);
displayText("IDLE");
}
void CTFTSerial::setLockout()
{
// Clear the screen
clearScreen();
// Draw MMDVM logo
displayBitmap(0U, 0U, "MMDVM_sm.bmp");
// Draw all mode insignias
displayBitmap(0U, 30U, "ALL_sm.bmp");
gotoPosText(0U, 8U);
displayText("LOCKOUT");
}
void CTFTSerial::setDStar()