Fixed incorrect variable name

This commit is contained in:
jgromes 2019-12-05 14:42:00 +01:00
parent f543436647
commit 7631353b4a
2 changed files with 2 additions and 1 deletions

View file

@ -18,6 +18,7 @@ int16_t SX126x::begin(float bw, uint8_t sf, uint8_t cr, uint16_t syncWord, float
_ldro = 0x00; _ldro = 0x00;
_crcType = SX126X_LORA_CRC_ON; _crcType = SX126X_LORA_CRC_ON;
_preambleLength = preambleLength; _preambleLength = preambleLength;
_tcxoDelay = 0;
// set mode to standby // set mode to standby
int16_t state = standby(); int16_t state = standby();

View file

@ -830,7 +830,7 @@ class SX126x: public PhysicalLayer {
float _dataRate; float _dataRate;
uint32_t _tcxoDelay_us = 0; uint32_t _tcxoDelay;
int16_t config(uint8_t modem); int16_t config(uint8_t modem);