Added voice prompt to warn that during backup/restore no voice prompts will be available.
Note that this is stil not hooked up.
This commit is contained in:
parent
7cd3f1d49a
commit
1f36e9b9d8
|
|
@ -135,6 +135,7 @@ PROMPT_ALTITUDE, // altitude
|
|||
PROMPT_SATELLITES, // satellites
|
||||
PROMPT_COMPASS, // compass
|
||||
PROMPT_DEGREES, // degrees
|
||||
PROMPT_VP_UNAVAILABLE, // Voice prompts will be unavailable during this operation.
|
||||
PROMPT_CHARACTER, // character
|
||||
PROMPT_SPACE, // space
|
||||
PROMPT_PERCENT, // Percent
|
||||
|
|
|
|||
|
|
@ -571,6 +571,7 @@ void announceBackupScreen()
|
|||
vpQueueStringTableEntry(¤tLanguage->connectToRTXTool);
|
||||
vpQueueStringTableEntry(¤tLanguage->toBackupFlashAnd);
|
||||
vpQueueStringTableEntry(¤tLanguage->pressPTTToStart);
|
||||
vpQueuePrompt(PROMPT_VP_UNAVAILABLE);
|
||||
|
||||
vpPlay();
|
||||
}
|
||||
|
|
@ -584,6 +585,7 @@ void announceRestoreScreen()
|
|||
vpQueueStringTableEntry(¤tLanguage->connectToRTXTool);
|
||||
vpQueueStringTableEntry(¤tLanguage->toRestoreFlashAnd);
|
||||
vpQueueStringTableEntry(¤tLanguage->pressPTTToStart);
|
||||
vpQueuePrompt(PROMPT_VP_UNAVAILABLE);
|
||||
|
||||
vpPlay();
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in New Issue