diff --git a/tests/rigctl_parse.c b/tests/rigctl_parse.c index 7d148adda..c16fb5028 100644 --- a/tests/rigctl_parse.c +++ b/tests/rigctl_parse.c @@ -340,13 +340,13 @@ static struct test_table test_list[] = { 'j', "get_rit", ACTION(get_rit), ARG_OUT, "RIT" }, { 'Z', "set_xit", ACTION(set_xit), ARG_IN, "XIT" }, { 'z', "get_xit", ACTION(get_xit), ARG_OUT, "XIT" }, - { 'Y', "set_ant", ACTION(set_ant), ARG_IN, "Antenna", "Option" }, + { 'Y', "set_ant", ACTION(set_ant), ARG_IN | ARG_NOVFO, "Antenna", "Option" }, { 'y', "get_ant", ACTION(get_ant), ARG_IN1 | ARG_OUT2 | ARG_NOVFO, "AntCurr", "Option", "AntTx", "AntRx" }, { 0x87, "set_powerstat", ACTION(set_powerstat), ARG_IN | ARG_NOVFO, "Power Status" }, { 0x88, "get_powerstat", ACTION(get_powerstat), ARG_OUT | ARG_NOVFO, "Power Status" }, - { 0x89, "send_dtmf", ACTION(send_dtmf), ARG_IN, "Digits" }, - { 0x8a, "recv_dtmf", ACTION(recv_dtmf), ARG_OUT, "Digits" }, - { '*', "reset", ACTION(reset), ARG_IN, "Reset" }, + { 0x89, "send_dtmf", ACTION(send_dtmf), ARG_IN | ARG_NOVFO, "Digits" }, + { 0x8a, "recv_dtmf", ACTION(recv_dtmf), ARG_OUT | ARG_NOVFO, "Digits" }, + { '*', "reset", ACTION(reset), ARG_IN | ARG_NOVFO, "Reset" }, { 'w', "send_cmd", ACTION(send_cmd), ARG_IN1 | ARG_IN_LINE | ARG_OUT2 | ARG_NOVFO, "Cmd", "Reply" }, { 'W', "send_cmd_rx", ACTION(send_cmd), ARG_IN | ARG_OUT2 | ARG_NOVFO, "Cmd", "Reply"}, { 'b', "send_morse", ACTION(send_morse), ARG_IN | ARG_NOVFO | ARG_IN_LINE, "Morse" }, @@ -354,7 +354,7 @@ static struct test_table test_list[] = { 0xbc, "wait_morse", ACTION(wait_morse), ARG_NOVFO}, { 0x94, "send_voice_mem", ACTION(send_voice_mem), ARG_NOVFO | ARG_IN, "Voice Mem#" }, { 0xab, "stop_voice_mem", ACTION(stop_voice_mem), ARG_NOVFO}, - { 0x8b, "get_dcd", ACTION(get_dcd), ARG_OUT, "DCD" }, + { 0x8b, "get_dcd", ACTION(get_dcd), ARG_OUT | ARG_NOVFO, "DCD" }, { 0x8d, "set_twiddle", ACTION(set_twiddle), ARG_IN | ARG_NOVFO, "Timeout (secs)" }, { 0x8e, "get_twiddle", ACTION(get_twiddle), ARG_OUT | ARG_NOVFO, "Timeout (secs)" }, { 0x97, "uplink", ACTION(set_uplink), ARG_IN | ARG_NOVFO, "1=Sub, 2=Main" }, @@ -375,7 +375,7 @@ static struct test_table test_list[] = { 0xf9, "get_clock", ACTION(get_clock), ARG_NOVFO }, { 0xf8, "set_clock", ACTION(set_clock), ARG_IN | ARG_NOVFO, "YYYYMMDDHHMMSS.sss+ZZ" }, { 0xf1, "halt", ACTION(halt), ARG_NOVFO }, /* rigctld only--halt the daemon */ - { 0x8c, "pause", ACTION(pause), ARG_IN, "Seconds" }, + { 0x8c, "pause", ACTION(pause), ARG_IN | ARG_NOVFO, "Seconds" }, { 0x98, "password", ACTION(password), ARG_IN | ARG_NOVFO, "Password" }, // { 0x99, "set_password", ACTION(set_password), ARG_IN | ARG_NOVFO, "Password" }, { 0xf7, "get_mode_bandwidths", ACTION(get_mode_bandwidths), ARG_IN | ARG_NOVFO, "Mode" },