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

modulation mode update

This commit is contained in:
OneOfEleven
2023-10-30 01:51:41 +00:00
parent 0596b74719
commit ff642dfb8d
14 changed files with 95 additions and 38 deletions

View File

@ -209,7 +209,12 @@ void processFKeyFunction(const key_code_t Key)
if (g_fkey_pressed)
{
g_tx_vfo->am_mode = (g_tx_vfo->am_mode + 1) & 1u;
#if 0
g_tx_vfo->am_mode = (g_tx_vfo->am_mode + 1) & 1u;
#else
if (++g_tx_vfo->am_mode >= 4)
g_tx_vfo->am_mode = 0;
#endif
g_request_save_channel = 1;
}
else