1
0
Fork 0
mirror of https://github.com/betaflight/betaflight.git synced 2025-07-19 14:25:20 +03:00

[H7] Enable SPI with resurrected HAL-based driver from v3.1.7 (#8199)

[H7] Enable SPI with resurrected HAL-based driver from v3.1.7
This commit is contained in:
Michael Keller 2019-05-11 23:36:27 +12:00 committed by GitHub
commit ce5411f851
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
7 changed files with 434 additions and 11 deletions

View file

@ -456,6 +456,12 @@ void init(void)
#ifdef USE_SPI_DEVICE_4
spiInit(SPIDEV_4);
#endif
#ifdef USE_SPI_DEVICE_5
spiInit(SPIDEV_5);
#endif
#ifdef USE_SPI_DEVICE_6
spiInit(SPIDEV_6);
#endif
#endif // USE_SPI
#ifdef USE_QUADSPI