Merge pull request #2357 from jinsheng20/bsp/stm32

增加 LTDC 官方驱动条件加入工程
This commit is contained in:
Bernard Xiong 2019-02-20 18:36:35 +08:00 committed by GitHub
commit f6d551553d
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 6 additions and 0 deletions

View File

@ -93,6 +93,12 @@ if GetDepend(['BSP_USING_ON_CHIP_FLASH']):
src += ['STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_flash.c']
src += ['STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_flash_ex.c']
if GetDepend(['BSP_USING_LTDC']):
src += ['STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_ltdc.c']
src += ['STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_ltdc_ex.c']
src += ['STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_dma2d.c']
src += ['STM32F7xx_HAL_Driver/Src/stm32f7xx_ll_dma2d.c']
path = [cwd + '/STM32F7xx_HAL_Driver/Inc',
cwd + '/CMSIS/Device/ST/STM32F7xx/Include',
cwd + '/CMSIS/Include']