From 16d2c565e878fefd9bc426efe9782a2199af2252 Mon Sep 17 00:00:00 2001 From: Vladislav Osmanov Date: Sat, 18 Sep 2021 21:39:29 +0300 Subject: [PATCH] Use EU433 frequency value as default for SX1268 --- src/mesh/SX1268Interface.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/mesh/SX1268Interface.h b/src/mesh/SX1268Interface.h index fb2239041..c5b56171b 100644 --- a/src/mesh/SX1268Interface.h +++ b/src/mesh/SX1268Interface.h @@ -8,8 +8,8 @@ class SX1268Interface : public SX126xInterface { public: - /// override frequency of the SX1268 module regardless of the region - virtual float getFreq() { return 433.0; } + /// override frequency of the SX1268 module regardless of the region (use EU433 value) + virtual float getFreq() { return 433.175f; } SX1268Interface(RADIOLIB_PIN_TYPE cs, RADIOLIB_PIN_TYPE irq, RADIOLIB_PIN_TYPE rst, RADIOLIB_PIN_TYPE busy, SPIClass &spi); }; \ No newline at end of file