FT991A agc

* fix to annunciate AUTO
    . submitted by Dave, KZ1O
This commit is contained in:
dave-w1hkj 2023-06-13 16:09:13 -05:00
parent f9a8362132
commit 02a5de9c8e

View file

@ -1614,7 +1614,7 @@ int RIG_FT991A::incr_agc()
{
static const char ch[] = {'0', '1', '2', '3', '4'};
agcval++;
if (agcval > 3) agcval = 0;
if (agcval > 4) agcval = 0;
cmd = "GT00;";
cmd[3] = ch[agcval];