From 6a4184bc9a25d8cafed1e005858168ec74f96b70 Mon Sep 17 00:00:00 2001 From: alanbjohnston Date: Sat, 10 Dec 2022 09:19:17 -0500 Subject: [PATCH] force bps present --- cubesatsim/cubesatsim.ino | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/cubesatsim/cubesatsim.ino b/cubesatsim/cubesatsim.ino index 77a926ba..2ef9f424 100644 --- a/cubesatsim/cubesatsim.ino +++ b/cubesatsim/cubesatsim.ino @@ -275,7 +275,6 @@ void loop() { if (debug_mode) Serial.println("Start transmit!!!"); - digitalWrite(PD_PIN, HIGH); // Enable SR_FRS digitalWrite(PTT_PIN, LOW); // start transmit transmit_led(HIGH); @@ -3556,8 +3555,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; }