0
mirror of https://github.com/OneOfEleven/uv-k5-firmware-custom.git synced 2025-06-20 15:08:37 +03:00

Fix DTMF call bug

This commit is contained in:
OneOfEleven
2023-10-16 21:59:17 +01:00
parent 1c736497f4
commit 695cf81d17
13 changed files with 61 additions and 74 deletions

View File

@ -328,7 +328,7 @@ void DTMF_HandleRequest(void)
}
}
if (g_setting_radio_disabled || g_dtmf_call_state != DTMF_CALL_STATE_NONE)
if (g_setting_radio_disabled || g_dtmf_call_state == DTMF_CALL_STATE_CALL_OUT)
{ // we've been disabled, or expecting a reply
return;
}