From ef25be73efe034cec2aee434c7fe458949c95f28 Mon Sep 17 00:00:00 2001
From: Ramakrishnan Muthukrishnan <ram@rkrishnan.org>
Date: Mon, 27 Nov 2023 20:44:42 +0530
Subject: [PATCH] rigctl: handle the ts-2000 TY command

---
 rigctl.c | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/rigctl.c b/rigctl.c
index bc49791..b954662 100644
--- a/rigctl.c
+++ b/rigctl.c
@@ -4138,7 +4138,8 @@ int parse_cmd(void *data) {
             break;
         case 'Y': // TY
             // set/read microprocessor firmware type
-            implemented = FALSE;
+	    sprintf(reply, "TY000;");
+	    send_resp(client->fd, reply);
             break;
         default:
             implemented = FALSE;
-- 
2.45.2