[LLCC68] Swapped bw and sf configuration (#425)

This commit is contained in:
jgromes 2021-12-22 14:49:47 +01:00
parent 0bd11f8c2f
commit ee5bdd35a8

View file

@ -14,10 +14,10 @@ int16_t LLCC68::begin(float freq, float bw, uint8_t sf, uint8_t cr, uint8_t sync
state = setFrequency(freq); state = setFrequency(freq);
RADIOLIB_ASSERT(state); RADIOLIB_ASSERT(state);
state = setSpreadingFactor(sf); state = setBandwidth(bw);
RADIOLIB_ASSERT(state); RADIOLIB_ASSERT(state);
state = setBandwidth(bw); state = setSpreadingFactor(sf);
RADIOLIB_ASSERT(state); RADIOLIB_ASSERT(state);
state = setOutputPower(power); state = setOutputPower(power);