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

pull/435/head
jgromes 2021-12-22 14:49:47 +01:00
rodzic 0bd11f8c2f
commit ee5bdd35a8
1 zmienionych plików z 3 dodań i 3 usunięć

Wyświetl plik

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