Skip to content

Commit

Permalink
[SX126x] Fixed unused parameter (TRAVIS_FORCE_BUILD)
Browse files Browse the repository at this point in the history
  • Loading branch information
jgromes committed Jul 6, 2020
1 parent c9add26 commit cdbabdb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/modules/SX126x/SX1262.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ SX1262::SX1262(Module* mod) : SX126x(mod) {

int16_t SX1262::begin(float freq, float bw, uint8_t sf, uint8_t cr, uint8_t syncWord, int8_t power, uint16_t preambleLength, float tcxoVoltage, bool useRegulatorLDO) {
// execute common part
int16_t state = SX126x::begin(bw, sf, cr, syncWord, tcxoVoltage, useRegulatorLDO);
int16_t state = SX126x::begin(bw, sf, cr, syncWord, preambleLength, tcxoVoltage, useRegulatorLDO);
RADIOLIB_ASSERT(state);

// configure publicly accessible settings
Expand Down

0 comments on commit cdbabdb

Please sign in to comment.