FW: add new files to the .c compiler proxy

This commit is contained in:
Daniel Fekete 2017-05-18 19:04:32 +02:00
parent e8c831a195
commit 81f19c4331
2 changed files with 42 additions and 0 deletions

View File

@ -196,6 +196,7 @@
#include "stm32f4xx_hal_iwdg.c"
#include "stm32f4xx_hal_lptim.c"
#include "stm32f4xx_hal_ltdc.c"
#include "stm32f4xx_hal_mmc.c"
#include "stm32f4xx_hal_nand.c"
#include "stm32f4xx_hal_nor.c"
#include "stm32f4xx_hal_pccard.c"
@ -216,10 +217,27 @@
#include "stm32f4xx_hal_uart.c"
#include "stm32f4xx_hal_usart.c"
#include "stm32f4xx_hal_wwdg.c"
#include "stm32f4xx_ll_adc.c"
#include "stm32f4xx_ll_crc.c"
#include "stm32f4xx_ll_dac.c"
#include "stm32f4xx_ll_dma.c"
#include "stm32f4xx_ll_dma2d.c"
#include "stm32f4xx_ll_exti.c"
#include "stm32f4xx_ll_fmc.c"
#include "stm32f4xx_ll_fsmc.c"
#include "stm32f4xx_ll_gpio.c"
#include "stm32f4xx_ll_i2c.c"
#include "stm32f4xx_ll_lptim.c"
#include "stm32f4xx_ll_pwr.c"
#include "stm32f4xx_ll_rcc.c"
#include "stm32f4xx_ll_rng.c"
#include "stm32f4xx_ll_rtc.c"
#include "stm32f4xx_ll_sdmmc.c"
#include "stm32f4xx_ll_spi.c"
#include "stm32f4xx_ll_tim.c"
#include "stm32f4xx_ll_usart.c"
#include "stm32f4xx_ll_usb.c"
#include "stm32f4xx_ll_utils.c"
#endif
#ifdef STM32F7
#include "stm32f7xx_hal.c"
@ -247,6 +265,7 @@
#include "stm32f7xx_hal_lptim.c"
#include "stm32f7xx_hal_ltdc.c"
#include "stm32f7xx_hal_mdios.c"
#include "stm32f7xx_hal_mmc.c"
#include "stm32f7xx_hal_nand.c"
#include "stm32f7xx_hal_nor.c"
#include "stm32f7xx_hal_pcd.c"
@ -259,6 +278,7 @@
#include "stm32f7xx_hal_sd.c"
#include "stm32f7xx_hal_sdram.c"
#include "stm32f7xx_hal_smartcard.c"
#include "stm32f7xx_hal_smbus.c"
#include "stm32f7xx_hal_spdifrx.c"
#include "stm32f7xx_hal_spi.c"
#include "stm32f7xx_hal_sram.c"
@ -266,9 +286,26 @@
#include "stm32f7xx_hal_uart.c"
#include "stm32f7xx_hal_usart.c"
#include "stm32f7xx_hal_wwdg.c"
#include "stm32f7xx_ll_adc.c"
#include "stm32f7xx_ll_crc.c"
#include "stm32f7xx_ll_dac.c"
#include "stm32f7xx_ll_dma.c"
#include "stm32f7xx_ll_dma2d.c"
#include "stm32f7xx_ll_exti.c"
#include "stm32f7xx_ll_fmc.c"
#include "stm32f7xx_ll_gpio.c"
#include "stm32f7xx_ll_i2c.c"
#include "stm32f7xx_ll_lptim.c"
#include "stm32f7xx_ll_pwr.c"
#include "stm32f7xx_ll_rcc.c"
#include "stm32f7xx_ll_rng.c"
#include "stm32f7xx_ll_rtc.c"
#include "stm32f7xx_ll_sdmmc.c"
#include "stm32f7xx_ll_spi.c"
#include "stm32f7xx_ll_tim.c"
#include "stm32f7xx_ll_usart.c"
#include "stm32f7xx_ll_usb.c"
#include "stm32f7xx_ll_utils.c"
#endif
#ifdef STM32L0
#include "stm32l0xx_hal.c"
@ -378,12 +415,15 @@
#include "stm32l4xx_hal_crc.c"
#include "stm32l4xx_hal_cryp.c"
#include "stm32l4xx_hal_dac.c"
#include "stm32l4xx_hal_dcmi.c"
#include "stm32l4xx_hal_dfsdm.c"
#include "stm32l4xx_hal_dma.c"
#include "stm32l4xx_hal_dma2d.c"
#include "stm32l4xx_hal_firewall.c"
#include "stm32l4xx_hal_flash.c"
#include "stm32l4xx_hal_flash_ramfunc.c"
#include "stm32l4xx_hal_gpio.c"
#include "stm32l4xx_hal_hash.c"
#include "stm32l4xx_hal_hcd.c"
#include "stm32l4xx_hal_i2c.c"
#include "stm32l4xx_hal_irda.c"
@ -417,6 +457,7 @@
#include "stm32l4xx_ll_crs.c"
#include "stm32l4xx_ll_dac.c"
#include "stm32l4xx_ll_dma.c"
#include "stm32l4xx_ll_dma2d.c"
#include "stm32l4xx_ll_exti.c"
#include "stm32l4xx_ll_fmc.c"
#include "stm32l4xx_ll_gpio.c"

View File

@ -136,6 +136,7 @@
#include "stm32l4xx_hal_cryp_ex.c"
#include "stm32l4xx_hal_dac_ex.c"
#include "stm32l4xx_hal_flash_ex.c"
#include "stm32l4xx_hal_hash_ex.c"
#include "stm32l4xx_hal_i2c_ex.c"
#include "stm32l4xx_hal_opamp_ex.c"
#include "stm32l4xx_hal_pcd_ex.c"