STM32F4: Add new stdperiph files into the build.

This commit is contained in:
Solomon Peachy 2013-12-23 15:25:14 -05:00
parent 2d0efc1b48
commit a754903be3
1 changed files with 7 additions and 2 deletions

View File

@ -21,9 +21,14 @@ STM32F4xx_OBJSR = misc.o stm32f4xx_dma.o stm32f4xx_rcc.o stm32f4xx_adc.o \
stm32f4xx_cryp_aes.o stm32f4xx_gpio.o stm32f4xx_spi.o \
stm32f4xx_cryp.o stm32f4xx_hash.o stm32f4xx_syscfg.o \
stm32f4xx_cryp_des.o stm32f4xx_hash_md5.o stm32f4xx_tim.o \
stm32f4xx_cryp_tdes.o stm32f4xx_hash_sha1.o stm32f4xx_usart.o \
stm32f4xx_cryp_tdes.o stm32f4xx_hash_sha1.o stm32f4xx_usart.o \
stm32f4xx_dac.o stm32f4xx_i2c.o stm32f4xx_wwdg.o stm32f4xx_dbgmcu.o \
stm32f4xx_iwdg.o stm32f4xx_dcmi.o stm32f4xx_pwr.o
stm32f4xx_iwdg.o stm32f4xx_dcmi.o stm32f4xx_pwr.o \
stm32f4xx_sai.o stm32f4xx_ltdc.o stm32f4xx_dma2d.o
ifeq ($(MCU_SUBTYPE),stm32f427x)
STM32F4xx_OBJSR += stm32f4xx_fmc.o # 427x/437x/429x/439x
endif
STM32F4xx_OBJS += $(addprefix $(LIBDIR)/STM32F4xx_StdPeriph_Driver/src/,$(STM32F4xx_OBJSR))