1
0
Fork 0
mirror of https://github.com/betaflight/betaflight.git synced 2025-07-24 16:55:36 +03:00

Merge pull request #5948 from jflyper/bfdev-drop-rx_softspi

Drop software SPI RX support
This commit is contained in:
Michael Keller 2018-05-24 09:36:03 +12:00 committed by GitHub
commit ca09a8e2fc
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
7 changed files with 6 additions and 170 deletions

View file

@ -258,7 +258,7 @@ void spiPreInit(void)
#ifdef FLASH_CS_PIN
spiPreInitCs(IO_TAG(FLASH_CS_PIN));
#endif
#if defined(USE_RX_SPI) && !defined(USE_RX_SOFTSPI)
#if defined(USE_RX_SPI)
spiPreInitCs(IO_TAG(RX_NSS_PIN));
#endif
}