From 68f2f3a0e6d9f586829e605784304743951bb238 Mon Sep 17 00:00:00 2001 From: db4ple Date: Tue, 6 Nov 2018 07:04:19 +0100 Subject: [PATCH] Fix for #1174 and #1603: CAT PTT via RTS not returning to RX This fix will make Virtual RTS return to RX after RTS has been cleared by the CAT program on PC side. So it was not a fault of TR4W in the end but a mistake on our side. Wonder why it worked in UCXlog. Please note: This has not been tested yet but should work. In any case it cannot make it worse... --- mchf-eclipse/drivers/cat/cat_driver.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mchf-eclipse/drivers/cat/cat_driver.c b/mchf-eclipse/drivers/cat/cat_driver.c index 21fcb4d17..3b02f9b9b 100644 --- a/mchf-eclipse/drivers/cat/cat_driver.c +++ b/mchf-eclipse/drivers/cat/cat_driver.c @@ -53,8 +53,8 @@ static void CatDriver_CatEnableTX(bool enable) } else { - ts.ptt_req = false; cat_driver.cat_ptt_active = false; + ts.tx_stop_req = true; } }