Fixed incorrect variable name
This commit is contained in:
parent
f543436647
commit
7631353b4a
2 changed files with 2 additions and 1 deletions
|
@ -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();
|
||||||
|
|
|
@ -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);
|
||||||
|
|
||||||
|
|
Loading…
Add table
Reference in a new issue