[SX126x] Explicitly set non-inverted IQ on startup

This commit is contained in:
jgromes 2023-08-12 18:38:15 +02:00
parent 2f36d5901e
commit 5d80dd46ae

View file

@ -91,6 +91,9 @@ int16_t SX126x::begin(uint8_t cr, uint8_t syncWord, uint16_t preambleLength, flo
state = setCRC(2); state = setCRC(2);
RADIOLIB_ASSERT(state); RADIOLIB_ASSERT(state);
state = invertIQ(false);
RADIOLIB_ASSERT(state);
return(state); return(state);
} }