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:
@ -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
|
||||
|
Reference in New Issue
Block a user