From 85bc9ac003c00637eb7772f793ddc75affb7b719 Mon Sep 17 00:00:00 2001 From: cheetah Date: Sat, 5 Apr 2025 01:41:48 +0200 Subject: [PATCH] added tx tuning --- src/main.cpp | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/src/main.cpp b/src/main.cpp index 023771b..7a44d8b 100644 --- a/src/main.cpp +++ b/src/main.cpp @@ -33,7 +33,9 @@ void setup() Serial.println("starting up modem"); float bitrate = globcfg.tx_baud / 1000.0; - int state = radio.beginFSK(globcfg.tx_freq, bitrate, globcfg.tx_dev); + float freq = globcfg.tx_freq + (float)((float)globcfg.tx_tune / 1000.0); + Serial.printf("tuned to %0.6f\n", freq); + int state = radio.beginFSK(freq, bitrate, globcfg.tx_dev); if (state == 0) { Serial.println(F("success!")); } else { @@ -42,7 +44,6 @@ void setup() #ifdef SMART_POC_DISPLAY display_update_state("modem fail"); #endif - // TODO: add solution to this while (true) { digitalWrite(PIN_LED, HIGH); delay(850);