From 84861cc879b2d9ab3bd0c1bce41313ae3351da98 Mon Sep 17 00:00:00 2001 From: alanbjohnston Date: Tue, 13 Dec 2022 10:01:25 -0500 Subject: [PATCH] add back in filter and sr_frs test --- cubesatsim/cubesatsim.ino | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/cubesatsim/cubesatsim.ino b/cubesatsim/cubesatsim.ino index 3f8c17de..4d99f702 100644 --- a/cubesatsim/cubesatsim.ino +++ b/cubesatsim/cubesatsim.ino @@ -3630,16 +3630,16 @@ void config_gpio() { pinMode(BPF_PIN, INPUT_PULLUP); // Read LPF to see if present // pinMode(SQUELCH, INPUT); // Squelch from TXC -// if (digitalRead(BPF_PIN) == FALSE) { - if (true) { // force BPF present + if (digitalRead(BPF_PIN) == FALSE) { +// 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 (true) { // 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; }