From 93315d28f1b36b72ce8e7cf136ef2b6e269f7bc6 Mon Sep 17 00:00:00 2001 From: alanbjohnston Date: Thu, 8 Dec 2022 08:08:36 -0500 Subject: [PATCH] force filter present for test --- cubesatsim/cubesatsim.ino | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/cubesatsim/cubesatsim.ino b/cubesatsim/cubesatsim.ino index 0bccedd5..ed29ca06 100644 --- a/cubesatsim/cubesatsim.ino +++ b/cubesatsim/cubesatsim.ino @@ -3563,8 +3563,8 @@ 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 (digitalRead(BPF_PIN) != FALSE) { // force BPF present +// if (digitalRead(BPF_PIN) == FALSE) { + if (digitalRead(BPF_PIN) != FALSE) { // force BPF present Serial.println("BPF present - transmit enabled"); filter_present = true; }