Update main.c add back LPF check

beta-extra-3
Alan Johnston 1 year ago committed by GitHub
parent a090f88db6
commit 8a0f9041a4
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

@ -285,7 +285,15 @@ int main(int argc, char * argv[]) {
onLed = 27;
onLedOn = HIGH;
onLedOff = LOW;
pinMode(26, INPUT);
pullUpDnControl(26, PUD_UP);
if (digitalRead(26) != HIGH) {
printf("v1 Present with UHF BPF\n");
transmit = TRUE;
}
/*
if (!ax5043) {
pinMode(2, INPUT);

Loading…
Cancel
Save

Powered by TurnKey Linux.