From d9ab6986ade1613f2b1d9cbc3fa2299d6074429b Mon Sep 17 00:00:00 2001 From: geeksville Date: Tue, 16 Jun 2020 12:02:13 -0700 Subject: [PATCH] per @dafeman 1.8V works on E22 --- src/mesh/SX1262Interface.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/mesh/SX1262Interface.cpp b/src/mesh/SX1262Interface.cpp index 3eba7444..e9ec8e7f 100644 --- a/src/mesh/SX1262Interface.cpp +++ b/src/mesh/SX1262Interface.cpp @@ -25,7 +25,7 @@ bool SX1262Interface::init() float tcxoVoltage = 0; // None - we use an XTAL #else float tcxoVoltage = - 2.4; // E22 uses DIO3 to power tcxo per https://github.com/jgromes/RadioLib/issues/12#issuecomment-520695575 + 1.8; // E22 uses DIO3 to power tcxo per https://github.com/jgromes/RadioLib/issues/12#issuecomment-520695575 #endif bool useRegulatorLDO = false; // Seems to depend on the connection to pin 9/DCC_SW - if an inductor DCDC? @@ -101,7 +101,7 @@ void SX1262Interface::setStandby() #ifdef SX1262_RXEN // we have RXEN/TXEN control - turn off RX and TX power digitalWrite(SX1262_RXEN, LOW); -#endif +#endif #ifdef SX1262_TXEN digitalWrite(SX1262_TXEN, LOW); #endif