From a090f88db65f4188e807434d419d48e8c1bbc7b6 Mon Sep 17 00:00:00 2001 From: Alan Johnston Date: Tue, 30 Jul 2024 10:57:00 -0400 Subject: [PATCH] Update main.c remove checks --- main.c | 13 ++++++++++--- 1 file changed, 10 insertions(+), 3 deletions(-) diff --git a/main.c b/main.c index 3d40f63e..52317bd2 100644 --- a/main.c +++ b/main.c @@ -278,9 +278,15 @@ int main(int argc, char * argv[]) { pclose(file); } - txLed = 0; // defaults for vB3 board without TFB - txLedOn = LOW; - txLedOff = HIGH; + txLed = 2; + txLedOn = HIGH; + txLedOff = LOW; + vB5 = TRUE; + onLed = 27; + onLedOn = HIGH; + onLedOff = LOW; + transmit = TRUE; +/* if (!ax5043) { pinMode(2, INPUT); pullUpDnControl(2, PUD_UP); @@ -344,6 +350,7 @@ int main(int argc, char * argv[]) { } } } + */ // pinMode(txLed, OUTPUT); // digitalWrite(txLed, txLedOff); #ifdef DEBUG_LOGGING