From a7a97776bb7466a1e6fa32e75ea24ce2713d0099 Mon Sep 17 00:00:00 2001 From: Mike Black W9MDB Date: Sat, 23 Oct 2021 10:13:30 -0500 Subject: [PATCH] Revert "Remove VFO argument from stop_morse, wait_morse, send_voice_mem, and get_dcd" This reverts commit c3d1e1559a6e0fc01a45a2d43c9d490a06bac49a. --- tests/rigctl_parse.c | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/tests/rigctl_parse.c b/tests/rigctl_parse.c index df64469de..40810083f 100644 --- a/tests/rigctl_parse.c +++ b/tests/rigctl_parse.c @@ -324,10 +324,10 @@ static struct test_table test_list[] = { '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" }, - { 0xbb, "stop_morse", ACTION(stop_morse), ARG_NOVFO}, - { 0xbc, "wait_morse", ACTION(wait_morse), ARG_NOVFO}, - { 0x94, "send_voice_mem", ACTION(send_voice_mem), ARG_IN | ARG_NOVFO, "Voice Mem#" }, - { 0x8b, "get_dcd", ACTION(get_dcd), ARG_OUT | ARG_NOVFO, "DCD" }, + { 0xbb, "stop_morse", ACTION(stop_morse), }, + { 0xbc, "wait_morse", ACTION(wait_morse), }, + { 0x94, "send_voice_mem", ACTION(send_voice_mem), ARG_IN, "Voice Mem#" }, + { 0x8b, "get_dcd", ACTION(get_dcd), ARG_OUT, "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" },