[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,12 +14,12 @@ int16_t LLCC68::begin(float freq, float bw, uint8_t sf, uint8_t cr, uint8_t sync
state = setFrequency(freq);
RADIOLIB_ASSERT(state);
state = setBandwidth(bw);
RADIOLIB_ASSERT(state);
state = setSpreadingFactor(sf);
RADIOLIB_ASSERT(state);
state = setBandwidth(bw);
RADIOLIB_ASSERT(state);
state = setOutputPower(power);
RADIOLIB_ASSERT(state);