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

Modulation mode update

This commit is contained in:
OneOfEleven
2023-10-30 02:10:36 +00:00
parent 5e0590355f
commit 4040d047fd
7 changed files with 16 additions and 7 deletions

View File

@ -212,7 +212,7 @@ void processFKeyFunction(const key_code_t Key)
#if 0
g_tx_vfo->am_mode = (g_tx_vfo->am_mode + 1) & 1u;
#else
if (++g_tx_vfo->am_mode >= 4)
if (++g_tx_vfo->am_mode >= 3)
g_tx_vfo->am_mode = 0;
#endif
g_request_save_channel = 1;