Skip to content

Commit 84861cc

Browse files
add back in filter and sr_frs test
1 parent 9733b0a commit 84861cc

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

cubesatsim/cubesatsim.ino

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -3630,16 +3630,16 @@ void config_gpio() {
36303630
pinMode(BPF_PIN, INPUT_PULLUP); // Read LPF to see if present
36313631
// pinMode(SQUELCH, INPUT); // Squelch from TXC
36323632

3633-
// if (digitalRead(BPF_PIN) == FALSE) {
3634-
if (true) { // force BPF present
3633+
if (digitalRead(BPF_PIN) == FALSE) {
3634+
// if (true) { // force BPF present
36353635
Serial.println("BPF present - transmit enabled");
36363636
filter_present = true;
36373637
}
36383638
else
36393639
Serial.println("BPF not present - no transmitting after CW ID");
36403640

3641-
// if (digitalRead(TXC_PIN) == FALSE) {
3642-
if (true) { // force SR_FRS not present
3641+
if (digitalRead(TXC_PIN) == FALSE) {
3642+
// if (true) { // force SR_FRS not present
36433643
Serial.println("SR_FRS present");
36443644
sr_frs_present = true;
36453645
}

0 commit comments

Comments
 (0)