From 92a79a2c1b66799b6b626e1eb37d700d9afde180 Mon Sep 17 00:00:00 2001 From: alanbjohnston Date: Sun, 11 Dec 2022 20:08:14 -0500 Subject: [PATCH] force bpf and sr_frs always present --- cubesatsim/cubesatsim.ino | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/cubesatsim/cubesatsim.ino b/cubesatsim/cubesatsim.ino index 2ef9f424..87ffbdb0 100644 --- a/cubesatsim/cubesatsim.ino +++ b/cubesatsim/cubesatsim.ino @@ -3556,15 +3556,15 @@ void config_gpio() { // pinMode(SQUELCH, INPUT); // Squelch from TXC // if (digitalRead(BPF_PIN) == FALSE) { - if (digitalRead(BPF_PIN) != FALSE) { // force BPF present + if (true) { // force BPF present Serial.println("BPF present - transmit enabled"); filter_present = true; } else Serial.println("BPF not present - no transmitting after CW ID"); - if (digitalRead(TXC_PIN) == FALSE) { -// if (digitalRead(TXC_PIN) != FALSE) { // force SR_FRS not present +// if (digitalRead(TXC_PIN) == FALSE) { + if (true) { // force SR_FRS not present Serial.println("SR_FRS present"); sr_frs_present = true; }