From f1ca5bea8f9e4521dbba59946bb6ec2179d0d092 Mon Sep 17 00:00:00 2001 From: Ramakrishnan Muthukrishnan Date: Fri, 7 Jan 2022 21:53:22 +0530 Subject: [PATCH] bug fixes in the new "start bandstack" command "#BS;" --- rigctl.c | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/rigctl.c b/rigctl.c index d4a149f..34f5079 100644 --- a/rigctl.c +++ b/rigctl.c @@ -2819,8 +2819,11 @@ int parse_cmd(void *data) { implemented = FALSE; break; case 'S': // BS - // start bandstack - start_bandstack(); + if (command[2] == ';') { + // start bandstack + start_bandstack(); + } + break; default: implemented = FALSE; break; -- 2.45.2