added tx tuning
All checks were successful
build / build (push) Successful in 3m58s

This commit is contained in:
cheetah 2025-04-05 01:41:48 +02:00
parent 6d388fe7ae
commit 85bc9ac003

View file

@ -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);