1
0
Fork 0
mirror of https://github.com/betaflight/betaflight.git synced 2025-07-17 13:25:30 +03:00

[H7] Enable SDCard/SDIO using HAL driver (#8227)

[H7] Enable SDCard/SDIO using HAL driver
This commit is contained in:
Michael Keller 2019-05-11 23:37:08 +12:00 committed by GitHub
commit 3054780cee
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
8 changed files with 574 additions and 70 deletions

View file

@ -518,6 +518,11 @@ void init(void)
updateHardwareRevision();
#endif
#if defined(STM32H7) && defined(USE_SDCARD_SDIO) // H7 only for now, likely should be applied to F4/F7 too
void SDIO_GPIO_Init(void);
SDIO_GPIO_Init();
#endif
#ifdef USE_VTX_RTC6705
bool useRTC6705 = rtc6705IOInit(vtxIOConfig());
#endif