1
0
Fork 0
mirror of https://github.com/betaflight/betaflight.git synced 2025-07-15 04:15:44 +03:00

Merge pull request #10091 from mikeller/fix_frsky_x_spi_bug

Fixed bug in FrSky X SPI code affecting RX range.
This commit is contained in:
Michael Keller 2020-08-13 20:42:00 +12:00
parent 7019b53afa
commit bfc22f2311

View file

@ -184,7 +184,7 @@ void initialiseData(bool inBindState)
cc2500WriteReg(CC2500_07_PKTCTRL1, 0x0D); cc2500WriteReg(CC2500_07_PKTCTRL1, 0x0D);
cc2500WriteReg(CC2500_19_FOCCFG, 0x16); cc2500WriteReg(CC2500_19_FOCCFG, 0x16);
if (!inBindState) { if (!inBindState) {
cc2500WriteReg(CC2500_03_FIFOTHR, 0x14); cc2500WriteReg(CC2500_03_FIFOTHR, 0x0E);
} }
delay(10); delay(10);
} }