From 423ed380620b5a66489f9c07454b60942333a1d4 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jaros=C5=82aw=20Doma=C5=84ski?= Date: Wed, 16 Sep 2026 22:17:12 +0200 Subject: [PATCH] Enable DC/DC in shared LR1110 initialization --- src/helpers/radiolib/CustomLR1110.h | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/helpers/radiolib/CustomLR1110.h b/src/helpers/radiolib/CustomLR1110.h index 0cfdb17a..4e6b3393 100644 --- a/src/helpers/radiolib/CustomLR1110.h +++ b/src/helpers/radiolib/CustomLR1110.h @@ -21,6 +21,8 @@ class CustomLR1110 : public LR1110 { int16_t state = LR1110::begin(freq, bw, sf, cr, syncWord, power, preambleLength, tcxoVoltage); if (state == RADIOLIB_ERR_NONE) applyMeshCoreTcxoDelay(); + // RadioLib begin() defaults to LDO; use the LR1110 DC/DC regulator. + if (state == RADIOLIB_ERR_NONE) state = setRegulatorDCDC(); return state; }