Added announceBackupScreen() and announceRestoreScreen()
This commit is contained in:
parent
b1c07e3d3f
commit
29bde26f4f
|
|
@ -69,6 +69,8 @@ void announceM17Info(channel_t* channel, VoicePromptQueueFlags_T flags);
|
|||
void announceGPSInfo();
|
||||
#endif // GPS_PRESENT
|
||||
void announceAboutScreen();
|
||||
void announceBackupScreen();
|
||||
void announceRestoreScreen();
|
||||
|
||||
VoicePromptQueueFlags_T GetQueueFlagsForVoiceLevel();
|
||||
|
||||
|
|
|
|||
|
|
@ -546,6 +546,7 @@ void announceGPSInfo()
|
|||
vpPlay();
|
||||
}
|
||||
#endif // GPS_PRESENT
|
||||
|
||||
void announceAboutScreen()
|
||||
{
|
||||
vpInit();
|
||||
|
|
@ -561,6 +562,32 @@ void announceAboutScreen()
|
|||
vpPlay();
|
||||
}
|
||||
|
||||
void announceBackupScreen()
|
||||
{
|
||||
vpInit();
|
||||
|
||||
vpQueueStringTableEntry(¤tLanguage->flashBackup);
|
||||
|
||||
vpQueueStringTableEntry(¤tLanguage->connectToRTXTool);
|
||||
vpQueueStringTableEntry(¤tLanguage->toBackupFlashAnd);
|
||||
vpQueueStringTableEntry(¤tLanguage->pressPTTToStart);
|
||||
|
||||
vpPlay();
|
||||
}
|
||||
|
||||
void announceRestoreScreen()
|
||||
{
|
||||
vpInit();
|
||||
|
||||
vpQueueStringTableEntry(¤tLanguage->flashRestore);
|
||||
|
||||
vpQueueStringTableEntry(¤tLanguage->connectToRTXTool);
|
||||
vpQueueStringTableEntry(¤tLanguage->toRestoreFlashAnd);
|
||||
vpQueueStringTableEntry(¤tLanguage->pressPTTToStart);
|
||||
|
||||
vpPlay();
|
||||
}
|
||||
|
||||
/*
|
||||
there are 5 levels of verbosity:
|
||||
|
||||
|
|
|
|||
Loading…
Reference in New Issue