0
mirror of https://github.com/OneOfEleven/uv-k5-firmware-custom.git synced 2025-06-18 22:29:50 +03:00

Each channel can now have it's own squelch level setting

This commit is contained in:
OneOfEleven
2023-10-19 20:03:12 +01:00
parent c8b6ce53fc
commit eb793f5839
7 changed files with 84 additions and 77 deletions

View File

@ -553,7 +553,7 @@ void UI_DisplayMenu(void)
case MENU_MIC_GAIN:
{ // display the mic gain in actual dB rather than just an index number
const uint8_t mic = g_mic_gain_dB_2[g_sub_menu_selection];
sprintf(String, "+%u.%01udB", mic / 2, mic % 2);
sprintf(String, "+%u.%udB", mic / 2, mic % 2);
}
break;