mirror of
https://github.com/DualTachyon/uv-k5-firmware.git
synced 2024-11-21 05:30:49 +08:00
Use ARRAY_SIZE and VOICE_ID_END instead of magic numbers. (#50)
This commit is contained in:
parent
93f221126f
commit
f22e79bedb
@ -1636,7 +1636,7 @@ Skip:
|
||||
gFlagPrepareTX = false;
|
||||
}
|
||||
if (gAnotherVoiceID != VOICE_ID_INVALID) {
|
||||
if (gAnotherVoiceID < 76) {
|
||||
if (gAnotherVoiceID < VOICE_ID_END)
|
||||
AUDIO_SetVoiceID(0, gAnotherVoiceID);
|
||||
}
|
||||
AUDIO_PlaySingleVoice(false);
|
||||
|
6
audio.c
6
audio.c
@ -253,7 +253,7 @@ Bailout:
|
||||
|
||||
void AUDIO_SetVoiceID(uint8_t Index, VOICE_ID_t VoiceID)
|
||||
{
|
||||
if (Index >= 8) {
|
||||
if (Index >= ARRAY_SIZE(gVoiceID)) {
|
||||
return;
|
||||
}
|
||||
if (Index == 0) {
|
||||
@ -310,14 +310,14 @@ void AUDIO_PlayQueuedVoice(void)
|
||||
if (gVoiceReadIndex != gVoiceWriteIndex && gEeprom.VOICE_PROMPT != VOICE_PROMPT_OFF) {
|
||||
VoiceID = gVoiceID[gVoiceReadIndex];
|
||||
if (gEeprom.VOICE_PROMPT == VOICE_PROMPT_CHINESE) {
|
||||
if (VoiceID < 58) {
|
||||
if (VoiceID < ARRAY_SIZE(VoiceClipLengthChinese)) {
|
||||
Delay = VoiceClipLengthChinese[VoiceID];
|
||||
VoiceID += VOICE_ID_CHI_BASE;
|
||||
} else {
|
||||
Skip = true;
|
||||
}
|
||||
} else {
|
||||
if (VoiceID < 76) {
|
||||
if (VoiceID < ARRAY_SIZE(VoiceClipLengthEnglish)) {
|
||||
Delay = VoiceClipLengthEnglish[VoiceID];
|
||||
VoiceID += VOICE_ID_ENG_BASE;
|
||||
} else {
|
||||
|
Loading…
Reference in New Issue
Block a user