From 83cec356712c7a7485ee736c51433f3f5fee02da Mon Sep 17 00:00:00 2001 From: Alan Johnston Date: Sat, 20 Jul 2019 05:43:21 -0400 Subject: [PATCH] frequency set to 434.9 MHz --- afsk/main.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/afsk/main.c b/afsk/main.c index 39ecbdb4..f626f01e 100644 --- a/afsk/main.c +++ b/afsk/main.c @@ -57,7 +57,7 @@ #define POWER 2 #define VBATT 15 -uint32_t tx_freq_hz = 440310000; +uint32_t tx_freq_hz = 434900000 + FREQUENCY_OFFSET; uint32_t tx_channel = 0; ax5043_conf_t hax5043; @@ -181,7 +181,7 @@ int main(int argc, char *argv[]) { int ret; uint8_t data[1024]; - tx_freq_hz -= tx_channel * 50000; + tx_freq_hz -= tx_channel * 50000 + 85000; // subtracting rx offset of 90kHz init_rf();