From 9808fc7455be72ed4c3e4b75fce89844c29059b8 Mon Sep 17 00:00:00 2001 From: Ramakrishnan Muthukrishnan Date: Fri, 7 Jan 2022 21:35:46 +0530 Subject: [PATCH] new command #BS that brings up bandstack window --- rigctl.c | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/rigctl.c b/rigctl.c index 2a78125..a925c72 100644 --- a/rigctl.c +++ b/rigctl.c @@ -37,6 +37,7 @@ #include "filter_menu.h" #include "mode.h" #include "new_protocol.h" +#include "new_menu.h" #include "noise_menu.h" #include "old_protocol.h" #include "radio.h" @@ -2817,6 +2818,9 @@ int parse_cmd(void *data) { // read busy signal implemented = FALSE; break; + case 'S': // BS + // start bandstack + start_bandstack(); default: implemented = FALSE; break; -- 2.45.2