HAL: Always include all hal source files

This commit is contained in:
Daniel Fekete 2017-05-12 06:58:23 +02:00
parent 745c653a7f
commit a376d7db60
114 changed files with 583 additions and 3173 deletions

View File

@ -2,28 +2,437 @@
#ifdef STM32F0
#include "stm32f0xx_hal.c"
#include "stm32f0xx_hal_adc.c"
#include "stm32f0xx_hal_can.c"
#include "stm32f0xx_hal_cec.c"
#include "stm32f0xx_hal_comp.c"
#include "stm32f0xx_hal_crc.c"
#include "stm32f0xx_hal_dac.c"
#include "stm32f0xx_hal_dma.c"
#include "stm32f0xx_hal_flash.c"
#include "stm32f0xx_hal_gpio.c"
#include "stm32f0xx_hal_i2c.c"
#include "stm32f0xx_hal_i2s.c"
#include "stm32f0xx_hal_irda.c"
#include "stm32f0xx_hal_iwdg.c"
#include "stm32f0xx_hal_pcd.c"
#include "stm32f0xx_hal_pwr.c"
#include "stm32f0xx_hal_rcc.c"
#include "stm32f0xx_hal_rtc.c"
#include "stm32f0xx_hal_smartcard.c"
#include "stm32f0xx_hal_smbus.c"
#include "stm32f0xx_hal_spi.c"
#include "stm32f0xx_hal_tim.c"
#include "stm32f0xx_hal_tsc.c"
#include "stm32f0xx_hal_uart.c"
#include "stm32f0xx_hal_usart.c"
#include "stm32f0xx_hal_wwdg.c"
#include "stm32f0xx_ll_adc.c"
#include "stm32f0xx_ll_comp.c"
#include "stm32f0xx_ll_crc.c"
#include "stm32f0xx_ll_crs.c"
#include "stm32f0xx_ll_dac.c"
#include "stm32f0xx_ll_dma.c"
#include "stm32f0xx_ll_exti.c"
#include "stm32f0xx_ll_gpio.c"
#include "stm32f0xx_ll_i2c.c"
#include "stm32f0xx_ll_pwr.c"
#include "stm32f0xx_ll_rcc.c"
#include "stm32f0xx_ll_rtc.c"
#include "stm32f0xx_ll_spi.c"
#include "stm32f0xx_ll_tim.c"
#include "stm32f0xx_ll_usart.c"
#include "stm32f0xx_ll_utils.c"
#endif
#ifdef STM32F1
#include "stm32f1xx_hal.c"
#include "stm32f1xx_hal_adc.c"
#include "stm32f1xx_hal_can.c"
#include "stm32f1xx_hal_cec.c"
#include "stm32f1xx_hal_crc.c"
#include "stm32f1xx_hal_dac.c"
#include "stm32f1xx_hal_dma.c"
#include "stm32f1xx_hal_eth.c"
#include "stm32f1xx_hal_flash.c"
#include "stm32f1xx_hal_gpio.c"
#include "stm32f1xx_hal_hcd.c"
#include "stm32f1xx_hal_i2c.c"
#include "stm32f1xx_hal_i2s.c"
#include "stm32f1xx_hal_irda.c"
#include "stm32f1xx_hal_iwdg.c"
#include "stm32f1xx_hal_nand.c"
#include "stm32f1xx_hal_nor.c"
#include "stm32f1xx_hal_pccard.c"
#include "stm32f1xx_hal_pcd.c"
#include "stm32f1xx_hal_pwr.c"
#include "stm32f1xx_hal_rcc.c"
#include "stm32f1xx_hal_rtc.c"
#include "stm32f1xx_hal_sd.c"
#include "stm32f1xx_hal_smartcard.c"
#include "stm32f1xx_hal_spi.c"
#include "stm32f1xx_hal_sram.c"
#include "stm32f1xx_hal_tim.c"
#include "stm32f1xx_hal_uart.c"
#include "stm32f1xx_hal_usart.c"
#include "stm32f1xx_hal_wwdg.c"
#include "stm32f1xx_ll_fsmc.c"
#include "stm32f1xx_ll_sdmmc.c"
#include "stm32f1xx_ll_usb.c"
#endif
#ifdef STM32F2
#include "stm32f2xx_hal.c"
#include "stm32f2xx_hal_adc.c"
#include "stm32f2xx_hal_can.c"
#include "stm32f2xx_hal_crc.c"
#include "stm32f2xx_hal_cryp.c"
#include "stm32f2xx_hal_dac.c"
#include "stm32f2xx_hal_dcmi.c"
#include "stm32f2xx_hal_dma.c"
#include "stm32f2xx_hal_eth.c"
#include "stm32f2xx_hal_flash.c"
#include "stm32f2xx_hal_gpio.c"
#include "stm32f2xx_hal_hash.c"
#include "stm32f2xx_hal_hcd.c"
#include "stm32f2xx_hal_i2c.c"
#include "stm32f2xx_hal_i2s.c"
#include "stm32f2xx_hal_irda.c"
#include "stm32f2xx_hal_iwdg.c"
#include "stm32f2xx_hal_nand.c"
#include "stm32f2xx_hal_nor.c"
#include "stm32f2xx_hal_pccard.c"
#include "stm32f2xx_hal_pcd.c"
#include "stm32f2xx_hal_pwr.c"
#include "stm32f2xx_hal_rcc.c"
#include "stm32f2xx_hal_rng.c"
#include "stm32f2xx_hal_rtc.c"
#include "stm32f2xx_hal_sd.c"
#include "stm32f2xx_hal_smartcard.c"
#include "stm32f2xx_hal_spi.c"
#include "stm32f2xx_hal_sram.c"
#include "stm32f2xx_hal_tim.c"
#include "stm32f2xx_hal_uart.c"
#include "stm32f2xx_hal_usart.c"
#include "stm32f2xx_hal_wwdg.c"
#include "stm32f2xx_ll_fsmc.c"
#include "stm32f2xx_ll_sdmmc.c"
#include "stm32f2xx_ll_usb.c"
#endif
#ifdef STM32F3
#include "stm32f3xx_hal.c"
#include "stm32f3xx_hal_adc.c"
#include "stm32f3xx_hal_can.c"
#include "stm32f3xx_hal_cec.c"
#include "stm32f3xx_hal_comp.c"
#include "stm32f3xx_hal_crc.c"
#include "stm32f3xx_hal_dac.c"
#include "stm32f3xx_hal_dma.c"
#include "stm32f3xx_hal_flash.c"
#include "stm32f3xx_hal_gpio.c"
#include "stm32f3xx_hal_hrtim.c"
#include "stm32f3xx_hal_i2c.c"
#include "stm32f3xx_hal_i2s.c"
#include "stm32f3xx_hal_irda.c"
#include "stm32f3xx_hal_iwdg.c"
#include "stm32f3xx_hal_nand.c"
#include "stm32f3xx_hal_nor.c"
#include "stm32f3xx_hal_opamp.c"
#include "stm32f3xx_hal_pccard.c"
#include "stm32f3xx_hal_pcd.c"
#include "stm32f3xx_hal_pwr.c"
#include "stm32f3xx_hal_rcc.c"
#include "stm32f3xx_hal_rtc.c"
#include "stm32f3xx_hal_sdadc.c"
#include "stm32f3xx_hal_smartcard.c"
#include "stm32f3xx_hal_smbus.c"
#include "stm32f3xx_hal_spi.c"
#include "stm32f3xx_hal_sram.c"
#include "stm32f3xx_hal_tim.c"
#include "stm32f3xx_hal_tsc.c"
#include "stm32f3xx_hal_uart.c"
#include "stm32f3xx_hal_usart.c"
#include "stm32f3xx_hal_wwdg.c"
#include "stm32f3xx_ll_adc.c"
#include "stm32f3xx_ll_comp.c"
#include "stm32f3xx_ll_crc.c"
#include "stm32f3xx_ll_dac.c"
#include "stm32f3xx_ll_dma.c"
#include "stm32f3xx_ll_exti.c"
#include "stm32f3xx_ll_fmc.c"
#include "stm32f3xx_ll_gpio.c"
#include "stm32f3xx_ll_hrtim.c"
#include "stm32f3xx_ll_i2c.c"
#include "stm32f3xx_ll_opamp.c"
#include "stm32f3xx_ll_pwr.c"
#include "stm32f3xx_ll_rcc.c"
#include "stm32f3xx_ll_rtc.c"
#include "stm32f3xx_ll_spi.c"
#include "stm32f3xx_ll_tim.c"
#include "stm32f3xx_ll_usart.c"
#include "stm32f3xx_ll_utils.c"
#endif
#ifdef STM32F4
#include "stm32f4xx_hal.c"
#include "stm32f4xx_hal_adc.c"
#include "stm32f4xx_hal_can.c"
#include "stm32f4xx_hal_cec.c"
#include "stm32f4xx_hal_crc.c"
#include "stm32f4xx_hal_cryp.c"
#include "stm32f4xx_hal_dac.c"
#include "stm32f4xx_hal_dcmi.c"
#include "stm32f4xx_hal_dfsdm.c"
#include "stm32f4xx_hal_dma.c"
#include "stm32f4xx_hal_dma2d.c"
#include "stm32f4xx_hal_dsi.c"
#include "stm32f4xx_hal_eth.c"
#include "stm32f4xx_hal_flash.c"
#include "stm32f4xx_hal_flash_ramfunc.c"
#include "stm32f4xx_hal_fmpi2c.c"
#include "stm32f4xx_hal_gpio.c"
#include "stm32f4xx_hal_hash.c"
#include "stm32f4xx_hal_hcd.c"
#include "stm32f4xx_hal_i2c.c"
#include "stm32f4xx_hal_i2s.c"
#include "stm32f4xx_hal_irda.c"
#include "stm32f4xx_hal_iwdg.c"
#include "stm32f4xx_hal_lptim.c"
#include "stm32f4xx_hal_ltdc.c"
#include "stm32f4xx_hal_nand.c"
#include "stm32f4xx_hal_nor.c"
#include "stm32f4xx_hal_pccard.c"
#include "stm32f4xx_hal_pcd.c"
#include "stm32f4xx_hal_pwr.c"
#include "stm32f4xx_hal_qspi.c"
#include "stm32f4xx_hal_rcc.c"
#include "stm32f4xx_hal_rng.c"
#include "stm32f4xx_hal_rtc.c"
#include "stm32f4xx_hal_sai.c"
#include "stm32f4xx_hal_sd.c"
#include "stm32f4xx_hal_sdram.c"
#include "stm32f4xx_hal_smartcard.c"
#include "stm32f4xx_hal_spdifrx.c"
#include "stm32f4xx_hal_spi.c"
#include "stm32f4xx_hal_sram.c"
#include "stm32f4xx_hal_tim.c"
#include "stm32f4xx_hal_uart.c"
#include "stm32f4xx_hal_usart.c"
#include "stm32f4xx_hal_wwdg.c"
#include "stm32f4xx_ll_fmc.c"
#include "stm32f4xx_ll_fsmc.c"
#include "stm32f4xx_ll_sdmmc.c"
#include "stm32f4xx_ll_usb.c"
#endif
#ifdef STM32F7
#include "stm32f7xx_hal.c"
#include "stm32f7xx_hal_adc.c"
#include "stm32f7xx_hal_can.c"
#include "stm32f7xx_hal_cec.c"
#include "stm32f7xx_hal_crc.c"
#include "stm32f7xx_hal_cryp.c"
#include "stm32f7xx_hal_dac.c"
#include "stm32f7xx_hal_dcmi.c"
#include "stm32f7xx_hal_dfsdm.c"
#include "stm32f7xx_hal_dma.c"
#include "stm32f7xx_hal_dma2d.c"
#include "stm32f7xx_hal_dsi.c"
#include "stm32f7xx_hal_eth.c"
#include "stm32f7xx_hal_flash.c"
#include "stm32f7xx_hal_gpio.c"
#include "stm32f7xx_hal_hash.c"
#include "stm32f7xx_hal_hcd.c"
#include "stm32f7xx_hal_i2c.c"
#include "stm32f7xx_hal_i2s.c"
#include "stm32f7xx_hal_irda.c"
#include "stm32f7xx_hal_iwdg.c"
#include "stm32f7xx_hal_jpeg.c"
#include "stm32f7xx_hal_lptim.c"
#include "stm32f7xx_hal_ltdc.c"
#include "stm32f7xx_hal_mdios.c"
#include "stm32f7xx_hal_nand.c"
#include "stm32f7xx_hal_nor.c"
#include "stm32f7xx_hal_pcd.c"
#include "stm32f7xx_hal_pwr.c"
#include "stm32f7xx_hal_qspi.c"
#include "stm32f7xx_hal_rcc.c"
#include "stm32f7xx_hal_rng.c"
#include "stm32f7xx_hal_rtc.c"
#include "stm32f7xx_hal_sai.c"
#include "stm32f7xx_hal_sd.c"
#include "stm32f7xx_hal_sdram.c"
#include "stm32f7xx_hal_smartcard.c"
#include "stm32f7xx_hal_spdifrx.c"
#include "stm32f7xx_hal_spi.c"
#include "stm32f7xx_hal_sram.c"
#include "stm32f7xx_hal_tim.c"
#include "stm32f7xx_hal_uart.c"
#include "stm32f7xx_hal_usart.c"
#include "stm32f7xx_hal_wwdg.c"
#include "stm32f7xx_ll_fmc.c"
#include "stm32f7xx_ll_sdmmc.c"
#include "stm32f7xx_ll_usb.c"
#endif
#ifdef STM32L0
#include "stm32l0xx_hal.c"
#include "stm32l0xx_hal_adc.c"
#include "stm32l0xx_hal_comp.c"
#include "stm32l0xx_hal_crc.c"
#include "stm32l0xx_hal_cryp.c"
#include "stm32l0xx_hal_dac.c"
#include "stm32l0xx_hal_dma.c"
#include "stm32l0xx_hal_firewall.c"
#include "stm32l0xx_hal_flash.c"
#include "stm32l0xx_hal_flash_ramfunc.c"
#include "stm32l0xx_hal_gpio.c"
#include "stm32l0xx_hal_i2c.c"
#include "stm32l0xx_hal_i2s.c"
#include "stm32l0xx_hal_irda.c"
#include "stm32l0xx_hal_iwdg.c"
#include "stm32l0xx_hal_lcd.c"
#include "stm32l0xx_hal_lptim.c"
#include "stm32l0xx_hal_pcd.c"
#include "stm32l0xx_hal_pwr.c"
#include "stm32l0xx_hal_rcc.c"
#include "stm32l0xx_hal_rng.c"
#include "stm32l0xx_hal_rtc.c"
#include "stm32l0xx_hal_smartcard.c"
#include "stm32l0xx_hal_smbus.c"
#include "stm32l0xx_hal_spi.c"
#include "stm32l0xx_hal_tim.c"
#include "stm32l0xx_hal_tsc.c"
#include "stm32l0xx_hal_uart.c"
#include "stm32l0xx_hal_usart.c"
#include "stm32l0xx_hal_wwdg.c"
#include "stm32l0xx_ll_adc.c"
#include "stm32l0xx_ll_comp.c"
#include "stm32l0xx_ll_crc.c"
#include "stm32l0xx_ll_crs.c"
#include "stm32l0xx_ll_dac.c"
#include "stm32l0xx_ll_dma.c"
#include "stm32l0xx_ll_exti.c"
#include "stm32l0xx_ll_gpio.c"
#include "stm32l0xx_ll_i2c.c"
#include "stm32l0xx_ll_lptim.c"
#include "stm32l0xx_ll_lpuart.c"
#include "stm32l0xx_ll_pwr.c"
#include "stm32l0xx_ll_rcc.c"
#include "stm32l0xx_ll_rng.c"
#include "stm32l0xx_ll_rtc.c"
#include "stm32l0xx_ll_spi.c"
#include "stm32l0xx_ll_tim.c"
#include "stm32l0xx_ll_usart.c"
#include "stm32l0xx_ll_utils.c"
#endif
#ifdef STM32L1
#include "stm32l1xx_hal.c"
#include "stm32l1xx_hal_adc.c"
#include "stm32l1xx_hal_comp.c"
#include "stm32l1xx_hal_crc.c"
#include "stm32l1xx_hal_cryp.c"
#include "stm32l1xx_hal_dac.c"
#include "stm32l1xx_hal_dma.c"
#include "stm32l1xx_hal_flash.c"
#include "stm32l1xx_hal_flash_ramfunc.c"
#include "stm32l1xx_hal_gpio.c"
#include "stm32l1xx_hal_i2c.c"
#include "stm32l1xx_hal_i2s.c"
#include "stm32l1xx_hal_irda.c"
#include "stm32l1xx_hal_iwdg.c"
#include "stm32l1xx_hal_lcd.c"
#include "stm32l1xx_hal_nor.c"
#include "stm32l1xx_hal_opamp.c"
#include "stm32l1xx_hal_pcd.c"
#include "stm32l1xx_hal_pwr.c"
#include "stm32l1xx_hal_rcc.c"
#include "stm32l1xx_hal_rtc.c"
#include "stm32l1xx_hal_sd.c"
#include "stm32l1xx_hal_smartcard.c"
#include "stm32l1xx_hal_spi.c"
#include "stm32l1xx_hal_sram.c"
#include "stm32l1xx_hal_tim.c"
#include "stm32l1xx_hal_uart.c"
#include "stm32l1xx_hal_usart.c"
#include "stm32l1xx_hal_wwdg.c"
#include "stm32l1xx_ll_adc.c"
#include "stm32l1xx_ll_comp.c"
#include "stm32l1xx_ll_crc.c"
#include "stm32l1xx_ll_dac.c"
#include "stm32l1xx_ll_dma.c"
#include "stm32l1xx_ll_exti.c"
#include "stm32l1xx_ll_fsmc.c"
#include "stm32l1xx_ll_gpio.c"
#include "stm32l1xx_ll_i2c.c"
#include "stm32l1xx_ll_opamp.c"
#include "stm32l1xx_ll_pwr.c"
#include "stm32l1xx_ll_rcc.c"
#include "stm32l1xx_ll_rtc.c"
#include "stm32l1xx_ll_sdmmc.c"
#include "stm32l1xx_ll_spi.c"
#include "stm32l1xx_ll_tim.c"
#include "stm32l1xx_ll_usart.c"
#include "stm32l1xx_ll_utils.c"
#endif
#ifdef STM32L4
#include "stm32l4xx_hal.c"
#include "stm32l4xx_hal_adc.c"
#include "stm32l4xx_hal_can.c"
#include "stm32l4xx_hal_comp.c"
#include "stm32l4xx_hal_crc.c"
#include "stm32l4xx_hal_cryp.c"
#include "stm32l4xx_hal_dac.c"
#include "stm32l4xx_hal_dfsdm.c"
#include "stm32l4xx_hal_dma.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_hcd.c"
#include "stm32l4xx_hal_i2c.c"
#include "stm32l4xx_hal_irda.c"
#include "stm32l4xx_hal_iwdg.c"
#include "stm32l4xx_hal_lcd.c"
#include "stm32l4xx_hal_lptim.c"
#include "stm32l4xx_hal_nand.c"
#include "stm32l4xx_hal_nor.c"
#include "stm32l4xx_hal_opamp.c"
#include "stm32l4xx_hal_pcd.c"
#include "stm32l4xx_hal_pwr.c"
#include "stm32l4xx_hal_qspi.c"
#include "stm32l4xx_hal_rcc.c"
#include "stm32l4xx_hal_rng.c"
#include "stm32l4xx_hal_rtc.c"
#include "stm32l4xx_hal_sai.c"
#include "stm32l4xx_hal_sd.c"
#include "stm32l4xx_hal_smartcard.c"
#include "stm32l4xx_hal_smbus.c"
#include "stm32l4xx_hal_spi.c"
#include "stm32l4xx_hal_sram.c"
#include "stm32l4xx_hal_swpmi.c"
#include "stm32l4xx_hal_tim.c"
#include "stm32l4xx_hal_tsc.c"
#include "stm32l4xx_hal_uart.c"
#include "stm32l4xx_hal_usart.c"
#include "stm32l4xx_hal_wwdg.c"
#include "stm32l4xx_ll_adc.c"
#include "stm32l4xx_ll_comp.c"
#include "stm32l4xx_ll_crc.c"
#include "stm32l4xx_ll_crs.c"
#include "stm32l4xx_ll_dac.c"
#include "stm32l4xx_ll_dma.c"
#include "stm32l4xx_ll_exti.c"
#include "stm32l4xx_ll_fmc.c"
#include "stm32l4xx_ll_gpio.c"
#include "stm32l4xx_ll_i2c.c"
#include "stm32l4xx_ll_lptim.c"
#include "stm32l4xx_ll_lpuart.c"
#include "stm32l4xx_ll_opamp.c"
#include "stm32l4xx_ll_pwr.c"
#include "stm32l4xx_ll_rcc.c"
#include "stm32l4xx_ll_rng.c"
#include "stm32l4xx_ll_rtc.c"
#include "stm32l4xx_ll_sdmmc.c"
#include "stm32l4xx_ll_spi.c"
#include "stm32l4xx_ll_swpmi.c"
#include "stm32l4xx_ll_tim.c"
#include "stm32l4xx_ll_usart.c"
#include "stm32l4xx_ll_usb.c"
#include "stm32l4xx_ll_utils.c"
#endif

View File

@ -1,29 +0,0 @@
#include "stm32_build_defines.h"
#ifdef STM32F0
#include "stm32f0xx_hal_adc.c"
#endif
#ifdef STM32F1
#include "stm32f1xx_hal_adc.c"
#endif
#ifdef STM32F2
#include "stm32f2xx_hal_adc.c"
#endif
#ifdef STM32F3
#include "stm32f3xx_hal_adc.c"
#endif
#ifdef STM32F4
#include "stm32f4xx_hal_adc.c"
#endif
#ifdef STM32F7
#include "stm32f7xx_hal_adc.c"
#endif
#ifdef STM32L0
#include "stm32l0xx_hal_adc.c"
#endif
#ifdef STM32L1
#include "stm32l1xx_hal_adc.c"
#endif
#ifdef STM32L4
#include "stm32l4xx_hal_adc.c"
#endif

View File

@ -1,29 +0,0 @@
#include "stm32_build_defines.h"
#ifdef STM32F0
#include "stm32f0xx_hal_adc_ex.c"
#endif
#ifdef STM32F1
#include "stm32f1xx_hal_adc_ex.c"
#endif
#ifdef STM32F2
#include "stm32f2xx_hal_adc_ex.c"
#endif
#ifdef STM32F3
#include "stm32f3xx_hal_adc_ex.c"
#endif
#ifdef STM32F4
#include "stm32f4xx_hal_adc_ex.c"
#endif
#ifdef STM32F7
#include "stm32f7xx_hal_adc_ex.c"
#endif
#ifdef STM32L0
#include "stm32l0xx_hal_adc_ex.c"
#endif
#ifdef STM32L1
#include "stm32l1xx_hal_adc_ex.c"
#endif
#ifdef STM32L4
#include "stm32l4xx_hal_adc_ex.c"
#endif

View File

@ -1,29 +0,0 @@
#include "stm32_build_defines.h"
#ifdef STM32F0
#include "stm32f0xx_hal_cortex.c"
#endif
#ifdef STM32F1
#include "stm32f1xx_hal_cortex.c"
#endif
#ifdef STM32F2
#include "stm32f2xx_hal_cortex.c"
#endif
#ifdef STM32F3
#include "stm32f3xx_hal_cortex.c"
#endif
#ifdef STM32F4
#include "stm32f4xx_hal_cortex.c"
#endif
#ifdef STM32F7
#include "stm32f7xx_hal_cortex.c"
#endif
#ifdef STM32L0
#include "stm32l0xx_hal_cortex.c"
#endif
#ifdef STM32L1
#include "stm32l1xx_hal_cortex.c"
#endif
#ifdef STM32L4
#include "stm32l4xx_hal_cortex.c"
#endif

View File

@ -1,29 +0,0 @@
#include "stm32_build_defines.h"
#ifdef STM32F0
#include "stm32f0xx_hal_dma.c"
#endif
#ifdef STM32F1
#include "stm32f1xx_hal_dma.c"
#endif
#ifdef STM32F2
#include "stm32f2xx_hal_dma.c"
#endif
#ifdef STM32F3
#include "stm32f3xx_hal_dma.c"
#endif
#ifdef STM32F4
#include "stm32f4xx_hal_dma.c"
#endif
#ifdef STM32F7
#include "stm32f7xx_hal_dma.c"
#endif
#ifdef STM32L0
#include "stm32l0xx_hal_dma.c"
#endif
#ifdef STM32L1
#include "stm32l1xx_hal_dma.c"
#endif
#ifdef STM32L4
#include "stm32l4xx_hal_dma.c"
#endif

View File

@ -1,29 +0,0 @@
#include "stm32_build_defines.h"
#ifdef STM32F0
#endif
#ifdef STM32F1
#endif
#ifdef STM32F2
#include "stm32f2xx_hal_dma_ex.c"
#endif
#ifdef STM32F3
#endif
#ifdef STM32F4
#include "stm32f4xx_hal_dma_ex.c"
#endif
#ifdef STM32F7
#include "stm32f7xx_hal_dma_ex.c"
#endif
#ifdef STM32L0
#endif
#ifdef STM32L1
#endif
#ifdef STM32L4
#endif

View File

@ -0,0 +1,149 @@
#include "stm32_build_defines.h"
#ifdef STM32F0
#include "stm32f0xx_hal_adc_ex.c"
#include "stm32f0xx_hal_cortex.c"
#include "stm32f0xx_hal_crc_ex.c"
#include "stm32f0xx_hal_dac_ex.c"
#include "stm32f0xx_hal_flash_ex.c"
#include "stm32f0xx_hal_i2c_ex.c"
#include "stm32f0xx_hal_pcd_ex.c"
#include "stm32f0xx_hal_pwr_ex.c"
#include "stm32f0xx_hal_rcc_ex.c"
#include "stm32f0xx_hal_rtc_ex.c"
#include "stm32f0xx_hal_smartcard_ex.c"
#include "stm32f0xx_hal_spi_ex.c"
#include "stm32f0xx_hal_tim_ex.c"
#include "stm32f0xx_hal_uart_ex.c"
#endif
#ifdef STM32F1
#include "stm32f1xx_hal_adc_ex.c"
#include "stm32f1xx_hal_cortex.c"
#include "stm32f1xx_hal_dac_ex.c"
#include "stm32f1xx_hal_flash_ex.c"
#include "stm32f1xx_hal_gpio_ex.c"
#include "stm32f1xx_hal_pcd_ex.c"
#include "stm32f1xx_hal_rcc_ex.c"
#include "stm32f1xx_hal_rtc_ex.c"
#include "stm32f1xx_hal_spi_ex.c"
#include "stm32f1xx_hal_tim_ex.c"
#endif
#ifdef STM32F2
#include "stm32f2xx_hal_adc_ex.c"
#include "stm32f2xx_hal_cortex.c"
#include "stm32f2xx_hal_dac_ex.c"
#include "stm32f2xx_hal_dma_ex.c"
#include "stm32f2xx_hal_flash_ex.c"
#include "stm32f2xx_hal_pcd_ex.c"
#include "stm32f2xx_hal_pwr_ex.c"
#include "stm32f2xx_hal_rcc_ex.c"
#include "stm32f2xx_hal_rtc_ex.c"
#include "stm32f2xx_hal_tim_ex.c"
#endif
#ifdef STM32F3
#include "stm32f3xx_hal_adc_ex.c"
#include "stm32f3xx_hal_cortex.c"
#include "stm32f3xx_hal_crc_ex.c"
#include "stm32f3xx_hal_dac_ex.c"
#include "stm32f3xx_hal_flash_ex.c"
#include "stm32f3xx_hal_i2c_ex.c"
#include "stm32f3xx_hal_i2s_ex.c"
#include "stm32f3xx_hal_opamp_ex.c"
#include "stm32f3xx_hal_pcd_ex.c"
#include "stm32f3xx_hal_pwr_ex.c"
#include "stm32f3xx_hal_rcc_ex.c"
#include "stm32f3xx_hal_rtc_ex.c"
#include "stm32f3xx_hal_smartcard_ex.c"
#include "stm32f3xx_hal_spi_ex.c"
#include "stm32f3xx_hal_tim_ex.c"
#include "stm32f3xx_hal_uart_ex.c"
#endif
#ifdef STM32F4
#include "stm32f4xx_hal_adc_ex.c"
#include "stm32f4xx_hal_cortex.c"
#include "stm32f4xx_hal_cryp_ex.c"
#include "stm32f4xx_hal_dac_ex.c"
#include "stm32f4xx_hal_dcmi_ex.c"
#include "stm32f4xx_hal_dma_ex.c"
#include "stm32f4xx_hal_flash_ex.c"
#include "stm32f4xx_hal_fmpi2c_ex.c"
#include "stm32f4xx_hal_hash_ex.c"
#include "stm32f4xx_hal_i2c_ex.c"
#include "stm32f4xx_hal_i2s_ex.c"
#include "stm32f4xx_hal_ltdc_ex.c"
#include "stm32f4xx_hal_pcd_ex.c"
#include "stm32f4xx_hal_pwr_ex.c"
#include "stm32f4xx_hal_rcc_ex.c"
#include "stm32f4xx_hal_rtc_ex.c"
#include "stm32f4xx_hal_sai_ex.c"
#include "stm32f4xx_hal_tim_ex.c"
#endif
#ifdef STM32F7
#include "stm32f7xx_hal_adc_ex.c"
#include "stm32f7xx_hal_cortex.c"
#include "stm32f7xx_hal_crc_ex.c"
#include "stm32f7xx_hal_cryp_ex.c"
#include "stm32f7xx_hal_dac_ex.c"
#include "stm32f7xx_hal_dcmi_ex.c"
#include "stm32f7xx_hal_dma_ex.c"
#include "stm32f7xx_hal_flash_ex.c"
#include "stm32f7xx_hal_hash_ex.c"
#include "stm32f7xx_hal_i2c_ex.c"
#include "stm32f7xx_hal_ltdc_ex.c"
#include "stm32f7xx_hal_pcd_ex.c"
#include "stm32f7xx_hal_pwr_ex.c"
#include "stm32f7xx_hal_rcc_ex.c"
#include "stm32f7xx_hal_rtc_ex.c"
#include "stm32f7xx_hal_sai_ex.c"
#include "stm32f7xx_hal_smartcard_ex.c"
#include "stm32f7xx_hal_tim_ex.c"
#endif
#ifdef STM32L0
#include "stm32l0xx_hal_adc_ex.c"
#include "stm32l0xx_hal_comp_ex.c"
#include "stm32l0xx_hal_cortex.c"
#include "stm32l0xx_hal_crc_ex.c"
#include "stm32l0xx_hal_cryp_ex.c"
#include "stm32l0xx_hal_dac_ex.c"
#include "stm32l0xx_hal_flash_ex.c"
#include "stm32l0xx_hal_i2c_ex.c"
#include "stm32l0xx_hal_pcd_ex.c"
#include "stm32l0xx_hal_pwr_ex.c"
#include "stm32l0xx_hal_rcc_ex.c"
#include "stm32l0xx_hal_rtc_ex.c"
#include "stm32l0xx_hal_smartcard_ex.c"
#include "stm32l0xx_hal_tim_ex.c"
#include "stm32l0xx_hal_uart_ex.c"
#endif
#ifdef STM32L1
#include "stm32l1xx_hal_adc_ex.c"
#include "stm32l1xx_hal_cortex.c"
#include "stm32l1xx_hal_cryp_ex.c"
#include "stm32l1xx_hal_dac_ex.c"
#include "stm32l1xx_hal_flash_ex.c"
#include "stm32l1xx_hal_opamp_ex.c"
#include "stm32l1xx_hal_pcd_ex.c"
#include "stm32l1xx_hal_pwr_ex.c"
#include "stm32l1xx_hal_rcc_ex.c"
#include "stm32l1xx_hal_rtc_ex.c"
#include "stm32l1xx_hal_spi_ex.c"
#include "stm32l1xx_hal_tim_ex.c"
#endif
#ifdef STM32L4
#include "stm32l4xx_hal_adc_ex.c"
#include "stm32l4xx_hal_cortex.c"
#include "stm32l4xx_hal_crc_ex.c"
#include "stm32l4xx_hal_cryp_ex.c"
#include "stm32l4xx_hal_dac_ex.c"
#include "stm32l4xx_hal_flash_ex.c"
#include "stm32l4xx_hal_i2c_ex.c"
#include "stm32l4xx_hal_opamp_ex.c"
#include "stm32l4xx_hal_pcd_ex.c"
#include "stm32l4xx_hal_pwr_ex.c"
#include "stm32l4xx_hal_rcc_ex.c"
#include "stm32l4xx_hal_rtc_ex.c"
#include "stm32l4xx_hal_smartcard_ex.c"
#include "stm32l4xx_hal_spi_ex.c"
#include "stm32l4xx_hal_tim_ex.c"
#include "stm32l4xx_hal_uart_ex.c"
#endif

View File

@ -1,29 +0,0 @@
#include "stm32_build_defines.h"
#ifdef STM32F0
#include "stm32f0xx_hal_gpio.c"
#endif
#ifdef STM32F1
#include "stm32f1xx_hal_gpio.c"
#endif
#ifdef STM32F2
#include "stm32f2xx_hal_gpio.c"
#endif
#ifdef STM32F3
#include "stm32f3xx_hal_gpio.c"
#endif
#ifdef STM32F4
#include "stm32f4xx_hal_gpio.c"
#endif
#ifdef STM32F7
#include "stm32f7xx_hal_gpio.c"
#endif
#ifdef STM32L0
#include "stm32l0xx_hal_gpio.c"
#endif
#ifdef STM32L1
#include "stm32l1xx_hal_gpio.c"
#endif
#ifdef STM32L4
#include "stm32l4xx_hal_gpio.c"
#endif

View File

@ -1,29 +0,0 @@
#include "stm32_build_defines.h"
#ifdef STM32F0
#include "stm32f0xx_hal_pcd.c"
#endif
#ifdef STM32F1
#include "stm32f1xx_hal_pcd.c"
#endif
#ifdef STM32F2
#include "stm32f2xx_hal_pcd.c"
#endif
#ifdef STM32F3
#include "stm32f3xx_hal_pcd.c"
#endif
#ifdef STM32F4
#include "stm32f4xx_hal_pcd.c"
#endif
#ifdef STM32F7
#include "stm32f7xx_hal_pcd.c"
#endif
#ifdef STM32L0
#include "stm32l0xx_hal_pcd.c"
#endif
#ifdef STM32L1
#include "stm32l1xx_hal_pcd.c"
#endif
#ifdef STM32L4
#include "stm32l4xx_hal_pcd.c"
#endif

View File

@ -1,29 +0,0 @@
#include "stm32_build_defines.h"
#ifdef STM32F0
#include "stm32f0xx_hal_pcd_ex.c"
#endif
#ifdef STM32F1
#include "stm32f1xx_hal_pcd_ex.c"
#endif
#ifdef STM32F2
#include "stm32f2xx_hal_pcd_ex.c"
#endif
#ifdef STM32F3
#include "stm32f3xx_hal_pcd_ex.c"
#endif
#ifdef STM32F4
#include "stm32f4xx_hal_pcd_ex.c"
#endif
#ifdef STM32F7
#include "stm32f7xx_hal_pcd_ex.c"
#endif
#ifdef STM32L0
#include "stm32l0xx_hal_pcd_ex.c"
#endif
#ifdef STM32L1
#include "stm32l1xx_hal_pcd_ex.c"
#endif
#ifdef STM32L4
#include "stm32l4xx_hal_pcd_ex.c"
#endif

View File

@ -1,29 +0,0 @@
#include "stm32_build_defines.h"
#ifdef STM32F0
#endif
#ifdef STM32F1
#endif
#ifdef STM32F2
#endif
#ifdef STM32F3
#endif
#ifdef STM32F4
#endif
#ifdef STM32F7
#include "stm32f7xx_hal_pwr_ex.c"
#endif
#ifdef STM32L0
#endif
#ifdef STM32L1
#include "stm32l1xx_hal_pwr_ex.c"
#endif
#ifdef STM32L4
#include "stm32l4xx_hal_pwr_ex.c"
#endif

View File

@ -1,29 +0,0 @@
#include "stm32_build_defines.h"
#ifdef STM32F0
#include "stm32f0xx_hal_rcc.c"
#endif
#ifdef STM32F1
#include "stm32f1xx_hal_rcc.c"
#endif
#ifdef STM32F2
#include "stm32f2xx_hal_rcc.c"
#endif
#ifdef STM32F3
#include "stm32f3xx_hal_rcc.c"
#endif
#ifdef STM32F4
#include "stm32f4xx_hal_rcc.c"
#endif
#ifdef STM32F7
#include "stm32f7xx_hal_rcc.c"
#endif
#ifdef STM32L0
#include "stm32l0xx_hal_rcc.c"
#endif
#ifdef STM32L1
#include "stm32l1xx_hal_rcc.c"
#endif
#ifdef STM32L4
#include "stm32l4xx_hal_rcc.c"
#endif

View File

@ -1,29 +0,0 @@
#include "stm32_build_defines.h"
#ifdef STM32F0
#include "stm32f0xx_hal_rcc_ex.c"
#endif
#ifdef STM32F1
#include "stm32f1xx_hal_rcc_ex.c"
#endif
#ifdef STM32F2
#include "stm32f2xx_hal_rcc_ex.c"
#endif
#ifdef STM32F3
#include "stm32f3xx_hal_rcc_ex.c"
#endif
#ifdef STM32F4
#include "stm32f4xx_hal_rcc_ex.c"
#endif
#ifdef STM32F7
#include "stm32f7xx_hal_rcc_ex.c"
#endif
#ifdef STM32L0
#include "stm32l0xx_hal_rcc_ex.c"
#endif
#ifdef STM32L1
#include "stm32l1xx_hal_rcc_ex.c"
#endif
#ifdef STM32L4
#include "stm32l4xx_hal_rcc_ex.c"
#endif

View File

@ -1,29 +0,0 @@
#include "stm32_build_defines.h"
#ifdef STM32F0
#include "stm32f0xx_hal_tim.c"
#endif
#ifdef STM32F1
#include "stm32f1xx_hal_tim.c"
#endif
#ifdef STM32F2
#include "stm32f2xx_hal_tim.c"
#endif
#ifdef STM32F3
#include "stm32f3xx_hal_tim.c"
#endif
#ifdef STM32F4
#include "stm32f4xx_hal_tim.c"
#endif
#ifdef STM32F7
#include "stm32f7xx_hal_tim.c"
#endif
#ifdef STM32L0
#include "stm32l0xx_hal_tim.c"
#endif
#ifdef STM32L1
#include "stm32l1xx_hal_tim.c"
#endif
#ifdef STM32L4
#include "stm32l4xx_hal_tim.c"
#endif

View File

@ -1,29 +0,0 @@
#include "stm32_build_defines.h"
#ifdef STM32F0
#include "stm32f0xx_hal_tim_ex.c"
#endif
#ifdef STM32F1
#include "stm32f1xx_hal_tim_ex.c"
#endif
#ifdef STM32F2
#include "stm32f2xx_hal_tim_ex.c"
#endif
#ifdef STM32F3
#include "stm32f3xx_hal_tim_ex.c"
#endif
#ifdef STM32F4
#include "stm32f4xx_hal_tim_ex.c"
#endif
#ifdef STM32F7
#include "stm32f7xx_hal_tim_ex.c"
#endif
#ifdef STM32L0
#include "stm32l0xx_hal_tim_ex.c"
#endif
#ifdef STM32L1
#include "stm32l1xx_hal_tim_ex.c"
#endif
#ifdef STM32L4
#include "stm32l4xx_hal_tim_ex.c"
#endif

View File

@ -1,29 +0,0 @@
#include "stm32_build_defines.h"
#ifdef STM32F0
#include "stm32f0xx_hal_uart.c"
#endif
#ifdef STM32F1
#include "stm32f1xx_hal_uart.c"
#endif
#ifdef STM32F2
#include "stm32f2xx_hal_uart.c"
#endif
#ifdef STM32F3
#include "stm32f3xx_hal_uart.c"
#endif
#ifdef STM32F4
#include "stm32f4xx_hal_uart.c"
#endif
#ifdef STM32F7
#include "stm32f7xx_hal_uart.c"
#endif
#ifdef STM32L0
#include "stm32l0xx_hal_uart.c"
#endif
#ifdef STM32L1
#include "stm32l1xx_hal_uart.c"
#endif
#ifdef STM32L4
#include "stm32l4xx_hal_uart.c"
#endif

View File

@ -1,29 +0,0 @@
#include "stm32_build_defines.h"
#ifdef STM32F0
#include "stm32f0xx_hal_uart_ex.c"
#endif
#ifdef STM32F1
#endif
#ifdef STM32F2
#endif
#ifdef STM32F3
#include "stm32f3xx_hal_uart_ex.c"
#endif
#ifdef STM32F4
#endif
#ifdef STM32F7
#endif
#ifdef STM32L0
#include "stm32l0xx_hal_uart_ex.c"
#endif
#ifdef STM32L1
#endif
#ifdef STM32L4
#include "stm32l4xx_hal_uart_ex.c"
#endif

View File

@ -1,29 +0,0 @@
#include "stm32_build_defines.h"
#ifdef STM32F0
#endif
#ifdef STM32F1
#include "stm32f1xx_ll_usb.c"
#endif
#ifdef STM32F2
#include "stm32f2xx_ll_usb.c"
#endif
#ifdef STM32F3
#endif
#ifdef STM32F4
#include "stm32f4xx_ll_usb.c"
#endif
#ifdef STM32F7
#include "stm32f7xx_ll_usb.c"
#endif
#ifdef STM32L0
#endif
#ifdef STM32L1
#endif
#ifdef STM32L4
#include "stm32l4xx_ll_usb.c"
#endif

View File

@ -1,29 +0,0 @@
#include "stm32_build_defines.h"
#ifdef STM32F0
#include "stm32f0xx_hal_i2s.c"
#endif
#ifdef STM32F1
#include "stm32f1xx_hal_i2s.c"
#endif
#ifdef STM32F2
#include "stm32f2xx_hal_i2s.c"
#endif
#ifdef STM32F3
#include "stm32f3xx_hal_i2s.c"
#endif
#ifdef STM32F4
#include "stm32f4xx_hal_i2s.c"
#endif
#ifdef STM32F7
#include "stm32f7xx_hal_i2s.c"
#endif
#ifdef STM32L0
#include "stm32l0xx_hal_i2s.c"
#endif
#ifdef STM32L1
#include "stm32l1xx_hal_i2s.c"
#endif
#ifdef STM32L4
#endif

View File

@ -1,29 +0,0 @@
#include "stm32_build_defines.h"
#ifdef STM32F0
#endif
#ifdef STM32F1
#endif
#ifdef STM32F2
#endif
#ifdef STM32F3
#include "stm32f3xx_hal_i2s_ex.c"
#endif
#ifdef STM32F4
#include "stm32f4xx_hal_i2s_ex.c"
#endif
#ifdef STM32F7
#endif
#ifdef STM32L0
#endif
#ifdef STM32L1
#endif
#ifdef STM32L4
#endif

View File

@ -1,29 +0,0 @@
#include "stm32_build_defines.h"
#ifdef STM32F0
#endif
#ifdef STM32F1
#include "stm32f1xx_hal_sd.c"
#endif
#ifdef STM32F2
#include "stm32f2xx_hal_sd.c"
#endif
#ifdef STM32F3
#endif
#ifdef STM32F4
#include "stm32f4xx_hal_sd.c"
#endif
#ifdef STM32F7
#include "stm32f7xx_hal_sd.c"
#endif
#ifdef STM32L0
#endif
#ifdef STM32L1
#include "stm32l1xx_hal_sd.c"
#endif
#ifdef STM32L4
#include "stm32l4xx_hal_sd.c"
#endif

View File

@ -1,29 +0,0 @@
#include "stm32_build_defines.h"
#ifdef STM32F0
#endif
#ifdef STM32F1
#include "stm32f1xx_ll_sdmmc.c"
#endif
#ifdef STM32F2
#include "stm32f2xx_ll_sdmmc.c"
#endif
#ifdef STM32F3
#endif
#ifdef STM32F4
#include "stm32f4xx_ll_sdmmc.c"
#endif
#ifdef STM32F7
#include "stm32f7xx_ll_sdmmc.c"
#endif
#ifdef STM32L0
#endif
#ifdef STM32L1
#include "stm32l1xx_ll_sdmmc.c"
#endif
#ifdef STM32L4
#include "stm32l4xx_ll_sdmmc.c"
#endif

View File

@ -1,29 +0,0 @@
#include "stm32_build_defines.h"
#ifdef STM32F0
#include "stm32f0xx_hal_spi.c"
#endif
#ifdef STM32F1
#include "stm32f1xx_hal_spi.c"
#endif
#ifdef STM32F2
#include "stm32f2xx_hal_spi.c"
#endif
#ifdef STM32F3
#include "stm32f3xx_hal_spi.c"
#endif
#ifdef STM32F4
#include "stm32f4xx_hal_spi.c"
#endif
#ifdef STM32F7
#include "stm32f7xx_hal_spi.c"
#endif
#ifdef STM32L0
#include "stm32l0xx_hal_spi.c"
#endif
#ifdef STM32L1
#include "stm32l1xx_hal_spi.c"
#endif
#ifdef STM32L4
#include "stm32l4xx_hal_spi.c"
#endif

View File

@ -1,15 +0,0 @@
#######################################
# Syntax Coloring Map SPI
#######################################
#######################################
# Datatypes (KEYWORD1)
#######################################
#######################################
# Methods and Functions (KEYWORD2)
#######################################
#######################################
# Constants (LITERAL1)
#######################################

View File

@ -1,9 +0,0 @@
name=STM32 HAL extra API source files
version=1.0
author=STM32
maintainer=Daniel Fekete <danieleff@gmail.com>
sentence=Include "STM32_HAL.h" to compile all of the remaining STM32 HAL files
paragraph=
category=Other
url=http://www.st.com/
architectures=STM32

View File

@ -1 +0,0 @@
// Inlcude this file if you want to include all extra STM32 HAL files

View File

@ -1,29 +0,0 @@
#include "stm32_build_defines.h"
#ifdef STM32F0
#include "stm32f0xx_hal_can.c"
#endif
#ifdef STM32F1
#include "stm32f1xx_hal_can.c"
#endif
#ifdef STM32F2
#include "stm32f2xx_hal_can.c"
#endif
#ifdef STM32F3
#include "stm32f3xx_hal_can.c"
#endif
#ifdef STM32F4
#include "stm32f4xx_hal_can.c"
#endif
#ifdef STM32F7
#include "stm32f7xx_hal_can.c"
#endif
#ifdef STM32L0
#endif
#ifdef STM32L1
#endif
#ifdef STM32L4
#include "stm32l4xx_hal_can.c"
#endif

View File

@ -1,29 +0,0 @@
#include "stm32_build_defines.h"
#ifdef STM32F0
#include "stm32f0xx_hal_cec.c"
#endif
#ifdef STM32F1
#include "stm32f1xx_hal_cec.c"
#endif
#ifdef STM32F2
#endif
#ifdef STM32F3
#include "stm32f3xx_hal_cec.c"
#endif
#ifdef STM32F4
#include "stm32f4xx_hal_cec.c"
#endif
#ifdef STM32F7
#include "stm32f7xx_hal_cec.c"
#endif
#ifdef STM32L0
#endif
#ifdef STM32L1
#endif
#ifdef STM32L4
#endif

View File

@ -1,29 +0,0 @@
#include "stm32_build_defines.h"
#ifdef STM32F0
#include "stm32f0xx_hal_comp.c"
#endif
#ifdef STM32F1
#endif
#ifdef STM32F2
#endif
#ifdef STM32F3
#include "stm32f3xx_hal_comp.c"
#endif
#ifdef STM32F4
#endif
#ifdef STM32F7
#endif
#ifdef STM32L0
#include "stm32l0xx_hal_comp.c"
#endif
#ifdef STM32L1
#include "stm32l1xx_hal_comp.c"
#endif
#ifdef STM32L4
#include "stm32l4xx_hal_comp.c"
#endif

View File

@ -1,29 +0,0 @@
#include "stm32_build_defines.h"
#ifdef STM32F0
#endif
#ifdef STM32F1
#endif
#ifdef STM32F2
#endif
#ifdef STM32F3
#endif
#ifdef STM32F4
#endif
#ifdef STM32F7
#endif
#ifdef STM32L0
#include "stm32l0xx_hal_comp_ex.c"
#endif
#ifdef STM32L1
#endif
#ifdef STM32L4
#endif

View File

@ -1,29 +0,0 @@
#include "stm32_build_defines.h"
#ifdef STM32F0
#include "stm32f0xx_hal_crc.c"
#endif
#ifdef STM32F1
#include "stm32f1xx_hal_crc.c"
#endif
#ifdef STM32F2
#include "stm32f2xx_hal_crc.c"
#endif
#ifdef STM32F3
#include "stm32f3xx_hal_crc.c"
#endif
#ifdef STM32F4
#include "stm32f4xx_hal_crc.c"
#endif
#ifdef STM32F7
#include "stm32f7xx_hal_crc.c"
#endif
#ifdef STM32L0
#include "stm32l0xx_hal_crc.c"
#endif
#ifdef STM32L1
#include "stm32l1xx_hal_crc.c"
#endif
#ifdef STM32L4
#include "stm32l4xx_hal_crc.c"
#endif

View File

@ -1,29 +0,0 @@
#include "stm32_build_defines.h"
#ifdef STM32F0
#include "stm32f0xx_hal_crc_ex.c"
#endif
#ifdef STM32F1
#endif
#ifdef STM32F2
#endif
#ifdef STM32F3
#include "stm32f3xx_hal_crc_ex.c"
#endif
#ifdef STM32F4
#endif
#ifdef STM32F7
#include "stm32f7xx_hal_crc_ex.c"
#endif
#ifdef STM32L0
#include "stm32l0xx_hal_crc_ex.c"
#endif
#ifdef STM32L1
#endif
#ifdef STM32L4
#include "stm32l4xx_hal_crc_ex.c"
#endif

View File

@ -1,29 +0,0 @@
#include "stm32_build_defines.h"
#ifdef STM32F0
#endif
#ifdef STM32F1
#endif
#ifdef STM32F2
#include "stm32f2xx_hal_cryp.c"
#endif
#ifdef STM32F3
#endif
#ifdef STM32F4
#include "stm32f4xx_hal_cryp.c"
#endif
#ifdef STM32F7
#include "stm32f7xx_hal_cryp.c"
#endif
#ifdef STM32L0
#include "stm32l0xx_hal_cryp.c"
#endif
#ifdef STM32L1
#include "stm32l1xx_hal_cryp.c"
#endif
#ifdef STM32L4
#include "stm32l4xx_hal_cryp.c"
#endif

View File

@ -1,29 +0,0 @@
#include "stm32_build_defines.h"
#ifdef STM32F0
#endif
#ifdef STM32F1
#endif
#ifdef STM32F2
#endif
#ifdef STM32F3
#endif
#ifdef STM32F4
#include "stm32f4xx_hal_cryp_ex.c"
#endif
#ifdef STM32F7
#include "stm32f7xx_hal_cryp_ex.c"
#endif
#ifdef STM32L0
#include "stm32l0xx_hal_cryp_ex.c"
#endif
#ifdef STM32L1
#include "stm32l1xx_hal_cryp_ex.c"
#endif
#ifdef STM32L4
#include "stm32l4xx_hal_cryp_ex.c"
#endif

View File

@ -1,29 +0,0 @@
#include "stm32_build_defines.h"
#ifdef STM32F0
#include "stm32f0xx_hal_dac.c"
#endif
#ifdef STM32F1
#include "stm32f1xx_hal_dac.c"
#endif
#ifdef STM32F2
#include "stm32f2xx_hal_dac.c"
#endif
#ifdef STM32F3
#include "stm32f3xx_hal_dac.c"
#endif
#ifdef STM32F4
#include "stm32f4xx_hal_dac.c"
#endif
#ifdef STM32F7
#include "stm32f7xx_hal_dac.c"
#endif
#ifdef STM32L0
#include "stm32l0xx_hal_dac.c"
#endif
#ifdef STM32L1
#include "stm32l1xx_hal_dac.c"
#endif
#ifdef STM32L4
#include "stm32l4xx_hal_dac.c"
#endif

View File

@ -1,29 +0,0 @@
#include "stm32_build_defines.h"
#ifdef STM32F0
#include "stm32f0xx_hal_dac_ex.c"
#endif
#ifdef STM32F1
#include "stm32f1xx_hal_dac_ex.c"
#endif
#ifdef STM32F2
#include "stm32f2xx_hal_dac_ex.c"
#endif
#ifdef STM32F3
#include "stm32f3xx_hal_dac_ex.c"
#endif
#ifdef STM32F4
#include "stm32f4xx_hal_dac_ex.c"
#endif
#ifdef STM32F7
#include "stm32f7xx_hal_dac_ex.c"
#endif
#ifdef STM32L0
#include "stm32l0xx_hal_dac_ex.c"
#endif
#ifdef STM32L1
#include "stm32l1xx_hal_dac_ex.c"
#endif
#ifdef STM32L4
#include "stm32l4xx_hal_dac_ex.c"
#endif

View File

@ -1,29 +0,0 @@
#include "stm32_build_defines.h"
#ifdef STM32F0
#endif
#ifdef STM32F1
#endif
#ifdef STM32F2
#include "stm32f2xx_hal_dcmi.c"
#endif
#ifdef STM32F3
#endif
#ifdef STM32F4
#include "stm32f4xx_hal_dcmi.c"
#endif
#ifdef STM32F7
#include "stm32f7xx_hal_dcmi.c"
#endif
#ifdef STM32L0
#endif
#ifdef STM32L1
#endif
#ifdef STM32L4
#endif

View File

@ -1,29 +0,0 @@
#include "stm32_build_defines.h"
#ifdef STM32F0
#endif
#ifdef STM32F1
#endif
#ifdef STM32F2
#endif
#ifdef STM32F3
#endif
#ifdef STM32F4
#include "stm32f4xx_hal_dcmi_ex.c"
#endif
#ifdef STM32F7
#include "stm32f7xx_hal_dcmi_ex.c"
#endif
#ifdef STM32L0
#endif
#ifdef STM32L1
#endif
#ifdef STM32L4
#endif

View File

@ -1,29 +0,0 @@
#include "stm32_build_defines.h"
#ifdef STM32F0
#endif
#ifdef STM32F1
#endif
#ifdef STM32F2
#endif
#ifdef STM32F3
#endif
#ifdef STM32F4
#include "stm32f4xx_hal_dfsdm.c"
#endif
#ifdef STM32F7
#include "stm32f7xx_hal_dfsdm.c"
#endif
#ifdef STM32L0
#endif
#ifdef STM32L1
#endif
#ifdef STM32L4
#include "stm32l4xx_hal_dfsdm.c"
#endif

View File

@ -1,29 +0,0 @@
#include "stm32_build_defines.h"
#ifdef STM32F0
#endif
#ifdef STM32F1
#endif
#ifdef STM32F2
#endif
#ifdef STM32F3
#endif
#ifdef STM32F4
#include "stm32f4xx_hal_dma2d.c"
#endif
#ifdef STM32F7
#include "stm32f7xx_hal_dma2d.c"
#endif
#ifdef STM32L0
#endif
#ifdef STM32L1
#endif
#ifdef STM32L4
#endif

View File

@ -1,29 +0,0 @@
#include "stm32_build_defines.h"
#ifdef STM32F0
#endif
#ifdef STM32F1
#endif
#ifdef STM32F2
#endif
#ifdef STM32F3
#endif
#ifdef STM32F4
#include "stm32f4xx_hal_dsi.c"
#endif
#ifdef STM32F7
#include "stm32f7xx_hal_dsi.c"
#endif
#ifdef STM32L0
#endif
#ifdef STM32L1
#endif
#ifdef STM32L4
#endif

View File

@ -1,29 +0,0 @@
#include "stm32_build_defines.h"
#ifdef STM32F0
#endif
#ifdef STM32F1
#include "stm32f1xx_hal_eth.c"
#endif
#ifdef STM32F2
#include "stm32f2xx_hal_eth.c"
#endif
#ifdef STM32F3
#endif
#ifdef STM32F4
#include "stm32f4xx_hal_eth.c"
#endif
#ifdef STM32F7
#include "stm32f7xx_hal_eth.c"
#endif
#ifdef STM32L0
#endif
#ifdef STM32L1
#endif
#ifdef STM32L4
#endif

View File

@ -1,29 +0,0 @@
#include "stm32_build_defines.h"
#ifdef STM32F0
#endif
#ifdef STM32F1
#endif
#ifdef STM32F2
#endif
#ifdef STM32F3
#endif
#ifdef STM32F4
#endif
#ifdef STM32F7
#endif
#ifdef STM32L0
#include "stm32l0xx_hal_firewall.c"
#endif
#ifdef STM32L1
#endif
#ifdef STM32L4
#include "stm32l4xx_hal_firewall.c"
#endif

View File

@ -1,29 +0,0 @@
#include "stm32_build_defines.h"
#ifdef STM32F0
#include "stm32f0xx_hal_flash.c"
#endif
#ifdef STM32F1
#include "stm32f1xx_hal_flash.c"
#endif
#ifdef STM32F2
#include "stm32f2xx_hal_flash.c"
#endif
#ifdef STM32F3
#include "stm32f3xx_hal_flash.c"
#endif
#ifdef STM32F4
#include "stm32f4xx_hal_flash.c"
#endif
#ifdef STM32F7
#include "stm32f7xx_hal_flash.c"
#endif
#ifdef STM32L0
#include "stm32l0xx_hal_flash.c"
#endif
#ifdef STM32L1
#include "stm32l1xx_hal_flash.c"
#endif
#ifdef STM32L4
#include "stm32l4xx_hal_flash.c"
#endif

View File

@ -1,29 +0,0 @@
#include "stm32_build_defines.h"
#ifdef STM32F0
#include "stm32f0xx_hal_flash_ex.c"
#endif
#ifdef STM32F1
#include "stm32f1xx_hal_flash_ex.c"
#endif
#ifdef STM32F2
#include "stm32f2xx_hal_flash_ex.c"
#endif
#ifdef STM32F3
#include "stm32f3xx_hal_flash_ex.c"
#endif
#ifdef STM32F4
#include "stm32f4xx_hal_flash_ex.c"
#endif
#ifdef STM32F7
#include "stm32f7xx_hal_flash_ex.c"
#endif
#ifdef STM32L0
#include "stm32l0xx_hal_flash_ex.c"
#endif
#ifdef STM32L1
#include "stm32l1xx_hal_flash_ex.c"
#endif
#ifdef STM32L4
#include "stm32l4xx_hal_flash_ex.c"
#endif

View File

@ -1,29 +0,0 @@
#include "stm32_build_defines.h"
#ifdef STM32F0
#endif
#ifdef STM32F1
#endif
#ifdef STM32F2
#endif
#ifdef STM32F3
#endif
#ifdef STM32F4
#include "stm32f4xx_hal_flash_ramfunc.c"
#endif
#ifdef STM32F7
#endif
#ifdef STM32L0
#include "stm32l0xx_hal_flash_ramfunc.c"
#endif
#ifdef STM32L1
#include "stm32l1xx_hal_flash_ramfunc.c"
#endif
#ifdef STM32L4
#include "stm32l4xx_hal_flash_ramfunc.c"
#endif

View File

@ -1,29 +0,0 @@
#include "stm32_build_defines.h"
#ifdef STM32F0
#endif
#ifdef STM32F1
#endif
#ifdef STM32F2
#endif
#ifdef STM32F3
#endif
#ifdef STM32F4
#include "stm32f4xx_hal_fmpi2c.c"
#endif
#ifdef STM32F7
#endif
#ifdef STM32L0
#endif
#ifdef STM32L1
#endif
#ifdef STM32L4
#endif

View File

@ -1,29 +0,0 @@
#include "stm32_build_defines.h"
#ifdef STM32F0
#endif
#ifdef STM32F1
#endif
#ifdef STM32F2
#endif
#ifdef STM32F3
#endif
#ifdef STM32F4
#include "stm32f4xx_hal_fmpi2c_ex.c"
#endif
#ifdef STM32F7
#endif
#ifdef STM32L0
#endif
#ifdef STM32L1
#endif
#ifdef STM32L4
#endif

View File

@ -1,29 +0,0 @@
#include "stm32_build_defines.h"
#ifdef STM32F0
#endif
#ifdef STM32F1
#include "stm32f1xx_hal_gpio_ex.c"
#endif
#ifdef STM32F2
#endif
#ifdef STM32F3
#endif
#ifdef STM32F4
#endif
#ifdef STM32F7
#endif
#ifdef STM32L0
#endif
#ifdef STM32L1
#endif
#ifdef STM32L4
#endif

View File

@ -1,29 +0,0 @@
#include "stm32_build_defines.h"
#ifdef STM32F0
#endif
#ifdef STM32F1
#endif
#ifdef STM32F2
#include "stm32f2xx_hal_hash.c"
#endif
#ifdef STM32F3
#endif
#ifdef STM32F4
#include "stm32f4xx_hal_hash.c"
#endif
#ifdef STM32F7
#include "stm32f7xx_hal_hash.c"
#endif
#ifdef STM32L0
#endif
#ifdef STM32L1
#endif
#ifdef STM32L4
#endif

View File

@ -1,29 +0,0 @@
#include "stm32_build_defines.h"
#ifdef STM32F0
#endif
#ifdef STM32F1
#endif
#ifdef STM32F2
#endif
#ifdef STM32F3
#endif
#ifdef STM32F4
#include "stm32f4xx_hal_hash_ex.c"
#endif
#ifdef STM32F7
#include "stm32f7xx_hal_hash_ex.c"
#endif
#ifdef STM32L0
#endif
#ifdef STM32L1
#endif
#ifdef STM32L4
#endif

View File

@ -1,29 +0,0 @@
#include "stm32_build_defines.h"
#ifdef STM32F0
#endif
#ifdef STM32F1
#include "stm32f1xx_hal_hcd.c"
#endif
#ifdef STM32F2
#include "stm32f2xx_hal_hcd.c"
#endif
#ifdef STM32F3
#endif
#ifdef STM32F4
#include "stm32f4xx_hal_hcd.c"
#endif
#ifdef STM32F7
#include "stm32f7xx_hal_hcd.c"
#endif
#ifdef STM32L0
#endif
#ifdef STM32L1
#endif
#ifdef STM32L4
#include "stm32l4xx_hal_hcd.c"
#endif

View File

@ -1,29 +0,0 @@
#include "stm32_build_defines.h"
#ifdef STM32F0
#endif
#ifdef STM32F1
#endif
#ifdef STM32F2
#endif
#ifdef STM32F3
#include "stm32f3xx_hal_hrtim.c"
#endif
#ifdef STM32F4
#endif
#ifdef STM32F7
#endif
#ifdef STM32L0
#endif
#ifdef STM32L1
#endif
#ifdef STM32L4
#endif

View File

@ -1,29 +0,0 @@
#include "stm32_build_defines.h"
#ifdef STM32F0
#include "stm32f0xx_hal_i2c_ex.c"
#endif
#ifdef STM32F1
#endif
#ifdef STM32F2
#endif
#ifdef STM32F3
#include "stm32f3xx_hal_i2c_ex.c"
#endif
#ifdef STM32F4
#include "stm32f4xx_hal_i2c_ex.c"
#endif
#ifdef STM32F7
#include "stm32f7xx_hal_i2c_ex.c"
#endif
#ifdef STM32L0
#include "stm32l0xx_hal_i2c_ex.c"
#endif
#ifdef STM32L1
#endif
#ifdef STM32L4
#include "stm32l4xx_hal_i2c_ex.c"
#endif

View File

@ -1,29 +0,0 @@
#include "stm32_build_defines.h"
#ifdef STM32F0
#include "stm32f0xx_hal_irda.c"
#endif
#ifdef STM32F1
#include "stm32f1xx_hal_irda.c"
#endif
#ifdef STM32F2
#include "stm32f2xx_hal_irda.c"
#endif
#ifdef STM32F3
#include "stm32f3xx_hal_irda.c"
#endif
#ifdef STM32F4
#include "stm32f4xx_hal_irda.c"
#endif
#ifdef STM32F7
#include "stm32f7xx_hal_irda.c"
#endif
#ifdef STM32L0
#include "stm32l0xx_hal_irda.c"
#endif
#ifdef STM32L1
#include "stm32l1xx_hal_irda.c"
#endif
#ifdef STM32L4
#include "stm32l4xx_hal_irda.c"
#endif

View File

@ -1,29 +0,0 @@
#include "stm32_build_defines.h"
#ifdef STM32F0
#include "stm32f0xx_hal_iwdg.c"
#endif
#ifdef STM32F1
#include "stm32f1xx_hal_iwdg.c"
#endif
#ifdef STM32F2
#include "stm32f2xx_hal_iwdg.c"
#endif
#ifdef STM32F3
#include "stm32f3xx_hal_iwdg.c"
#endif
#ifdef STM32F4
#include "stm32f4xx_hal_iwdg.c"
#endif
#ifdef STM32F7
#include "stm32f7xx_hal_iwdg.c"
#endif
#ifdef STM32L0
#include "stm32l0xx_hal_iwdg.c"
#endif
#ifdef STM32L1
#include "stm32l1xx_hal_iwdg.c"
#endif
#ifdef STM32L4
#include "stm32l4xx_hal_iwdg.c"
#endif

View File

@ -1,29 +0,0 @@
#include "stm32_build_defines.h"
#ifdef STM32F0
#endif
#ifdef STM32F1
#endif
#ifdef STM32F2
#endif
#ifdef STM32F3
#endif
#ifdef STM32F4
#endif
#ifdef STM32F7
#include "stm32f7xx_hal_jpeg.c"
#endif
#ifdef STM32L0
#endif
#ifdef STM32L1
#endif
#ifdef STM32L4
#endif

View File

@ -1,29 +0,0 @@
#include "stm32_build_defines.h"
#ifdef STM32F0
#endif
#ifdef STM32F1
#endif
#ifdef STM32F2
#endif
#ifdef STM32F3
#endif
#ifdef STM32F4
#endif
#ifdef STM32F7
#endif
#ifdef STM32L0
#include "stm32l0xx_hal_lcd.c"
#endif
#ifdef STM32L1
#include "stm32l1xx_hal_lcd.c"
#endif
#ifdef STM32L4
#include "stm32l4xx_hal_lcd.c"
#endif

View File

@ -1,29 +0,0 @@
#include "stm32_build_defines.h"
#ifdef STM32F0
#endif
#ifdef STM32F1
#endif
#ifdef STM32F2
#endif
#ifdef STM32F3
#endif
#ifdef STM32F4
#include "stm32f4xx_hal_lptim.c"
#endif
#ifdef STM32F7
#include "stm32f7xx_hal_lptim.c"
#endif
#ifdef STM32L0
#include "stm32l0xx_hal_lptim.c"
#endif
#ifdef STM32L1
#endif
#ifdef STM32L4
#include "stm32l4xx_hal_lptim.c"
#endif

View File

@ -1,29 +0,0 @@
#include "stm32_build_defines.h"
#ifdef STM32F0
#endif
#ifdef STM32F1
#endif
#ifdef STM32F2
#endif
#ifdef STM32F3
#endif
#ifdef STM32F4
#include "stm32f4xx_hal_ltdc.c"
#endif
#ifdef STM32F7
#include "stm32f7xx_hal_ltdc.c"
#endif
#ifdef STM32L0
#endif
#ifdef STM32L1
#endif
#ifdef STM32L4
#endif

View File

@ -1,29 +0,0 @@
#include "stm32_build_defines.h"
#ifdef STM32F0
#endif
#ifdef STM32F1
#endif
#ifdef STM32F2
#endif
#ifdef STM32F3
#endif
#ifdef STM32F4
#include "stm32f4xx_hal_ltdc_ex.c"
#endif
#ifdef STM32F7
#include "stm32f7xx_hal_ltdc_ex.c"
#endif
#ifdef STM32L0
#endif
#ifdef STM32L1
#endif
#ifdef STM32L4
#endif

View File

@ -1,29 +0,0 @@
#include "stm32_build_defines.h"
#ifdef STM32F0
#endif
#ifdef STM32F1
#endif
#ifdef STM32F2
#endif
#ifdef STM32F3
#endif
#ifdef STM32F4
#endif
#ifdef STM32F7
#include "stm32f7xx_hal_mdios.c"
#endif
#ifdef STM32L0
#endif
#ifdef STM32L1
#endif
#ifdef STM32L4
#endif

View File

@ -1,29 +0,0 @@
#include "stm32_build_defines.h"
#ifdef STM32F0
#endif
#ifdef STM32F1
#include "stm32f1xx_hal_nand.c"
#endif
#ifdef STM32F2
#include "stm32f2xx_hal_nand.c"
#endif
#ifdef STM32F3
#include "stm32f3xx_hal_nand.c"
#endif
#ifdef STM32F4
#include "stm32f4xx_hal_nand.c"
#endif
#ifdef STM32F7
#include "stm32f7xx_hal_nand.c"
#endif
#ifdef STM32L0
#endif
#ifdef STM32L1
#endif
#ifdef STM32L4
#include "stm32l4xx_hal_nand.c"
#endif

View File

@ -1,29 +0,0 @@
#include "stm32_build_defines.h"
#ifdef STM32F0
#endif
#ifdef STM32F1
#include "stm32f1xx_hal_nor.c"
#endif
#ifdef STM32F2
#include "stm32f2xx_hal_nor.c"
#endif
#ifdef STM32F3
#include "stm32f3xx_hal_nor.c"
#endif
#ifdef STM32F4
#include "stm32f4xx_hal_nor.c"
#endif
#ifdef STM32F7
#include "stm32f7xx_hal_nor.c"
#endif
#ifdef STM32L0
#endif
#ifdef STM32L1
#include "stm32l1xx_hal_nor.c"
#endif
#ifdef STM32L4
#include "stm32l4xx_hal_nor.c"
#endif

View File

@ -1,29 +0,0 @@
#include "stm32_build_defines.h"
#ifdef STM32F0
#endif
#ifdef STM32F1
#endif
#ifdef STM32F2
#endif
#ifdef STM32F3
#include "stm32f3xx_hal_opamp.c"
#endif
#ifdef STM32F4
#endif
#ifdef STM32F7
#endif
#ifdef STM32L0
#endif
#ifdef STM32L1
#include "stm32l1xx_hal_opamp.c"
#endif
#ifdef STM32L4
#include "stm32l4xx_hal_opamp.c"
#endif

View File

@ -1,29 +0,0 @@
#include "stm32_build_defines.h"
#ifdef STM32F0
#endif
#ifdef STM32F1
#endif
#ifdef STM32F2
#endif
#ifdef STM32F3
#include "stm32f3xx_hal_opamp_ex.c"
#endif
#ifdef STM32F4
#endif
#ifdef STM32F7
#endif
#ifdef STM32L0
#endif
#ifdef STM32L1
#include "stm32l1xx_hal_opamp_ex.c"
#endif
#ifdef STM32L4
#include "stm32l4xx_hal_opamp_ex.c"
#endif

View File

@ -1,29 +0,0 @@
#include "stm32_build_defines.h"
#ifdef STM32F0
#endif
#ifdef STM32F1
#include "stm32f1xx_hal_pccard.c"
#endif
#ifdef STM32F2
#include "stm32f2xx_hal_pccard.c"
#endif
#ifdef STM32F3
#include "stm32f3xx_hal_pccard.c"
#endif
#ifdef STM32F4
#include "stm32f4xx_hal_pccard.c"
#endif
#ifdef STM32F7
#endif
#ifdef STM32L0
#endif
#ifdef STM32L1
#endif
#ifdef STM32L4
#endif

View File

@ -1,29 +0,0 @@
#include "stm32_build_defines.h"
#ifdef STM32F0
#include "stm32f0xx_hal_pcd_ex.c"
#endif
#ifdef STM32F1
#include "stm32f1xx_hal_pcd_ex.c"
#endif
#ifdef STM32F2
#include "stm32f2xx_hal_pcd_ex.c"
#endif
#ifdef STM32F3
#include "stm32f3xx_hal_pcd_ex.c"
#endif
#ifdef STM32F4
#include "stm32f4xx_hal_pcd_ex.c"
#endif
#ifdef STM32F7
#include "stm32f7xx_hal_pcd_ex.c"
#endif
#ifdef STM32L0
#include "stm32l0xx_hal_pcd_ex.c"
#endif
#ifdef STM32L1
#include "stm32l1xx_hal_pcd_ex.c"
#endif
#ifdef STM32L4
#include "stm32l4xx_hal_pcd_ex.c"
#endif

View File

@ -1,29 +0,0 @@
#include "stm32_build_defines.h"
#ifdef STM32F0
#include "stm32f0xx_hal_pwr.c"
#endif
#ifdef STM32F1
#include "stm32f1xx_hal_pwr.c"
#endif
#ifdef STM32F2
#include "stm32f2xx_hal_pwr.c"
#endif
#ifdef STM32F3
#include "stm32f3xx_hal_pwr.c"
#endif
#ifdef STM32F4
#include "stm32f4xx_hal_pwr.c"
#endif
#ifdef STM32F7
#include "stm32f7xx_hal_pwr.c"
#endif
#ifdef STM32L0
#include "stm32l0xx_hal_pwr.c"
#endif
#ifdef STM32L1
#include "stm32l1xx_hal_pwr.c"
#endif
#ifdef STM32L4
#include "stm32l4xx_hal_pwr.c"
#endif

View File

@ -1,29 +0,0 @@
#include "stm32_build_defines.h"
#ifdef STM32F0
#include "stm32f0xx_hal_pwr_ex.c"
#endif
#ifdef STM32F1
#endif
#ifdef STM32F2
#include "stm32f2xx_hal_pwr_ex.c"
#endif
#ifdef STM32F3
#include "stm32f3xx_hal_pwr_ex.c"
#endif
#ifdef STM32F4
#include "stm32f4xx_hal_pwr_ex.c"
#endif
#ifdef STM32F7
#include "stm32f7xx_hal_pwr_ex.c"
#endif
#ifdef STM32L0
#include "stm32l0xx_hal_pwr_ex.c"
#endif
#ifdef STM32L1
#include "stm32l1xx_hal_pwr_ex.c"
#endif
#ifdef STM32L4
#include "stm32l4xx_hal_pwr_ex.c"
#endif

View File

@ -1,29 +0,0 @@
#include "stm32_build_defines.h"
#ifdef STM32F0
#endif
#ifdef STM32F1
#endif
#ifdef STM32F2
#endif
#ifdef STM32F3
#endif
#ifdef STM32F4
#include "stm32f4xx_hal_qspi.c"
#endif
#ifdef STM32F7
#include "stm32f7xx_hal_qspi.c"
#endif
#ifdef STM32L0
#endif
#ifdef STM32L1
#endif
#ifdef STM32L4
#include "stm32l4xx_hal_qspi.c"
#endif

View File

@ -1,29 +0,0 @@
#include "stm32_build_defines.h"
#ifdef STM32F0
#endif
#ifdef STM32F1
#endif
#ifdef STM32F2
#include "stm32f2xx_hal_rng.c"
#endif
#ifdef STM32F3
#endif
#ifdef STM32F4
#include "stm32f4xx_hal_rng.c"
#endif
#ifdef STM32F7
#include "stm32f7xx_hal_rng.c"
#endif
#ifdef STM32L0
#include "stm32l0xx_hal_rng.c"
#endif
#ifdef STM32L1
#endif
#ifdef STM32L4
#include "stm32l4xx_hal_rng.c"
#endif

View File

@ -1,29 +0,0 @@
#include "stm32_build_defines.h"
#ifdef STM32F0
#include "stm32f0xx_hal_rtc.c"
#endif
#ifdef STM32F1
#include "stm32f1xx_hal_rtc.c"
#endif
#ifdef STM32F2
#include "stm32f2xx_hal_rtc.c"
#endif
#ifdef STM32F3
#include "stm32f3xx_hal_rtc.c"
#endif
#ifdef STM32F4
#include "stm32f4xx_hal_rtc.c"
#endif
#ifdef STM32F7
#include "stm32f7xx_hal_rtc.c"
#endif
#ifdef STM32L0
#include "stm32l0xx_hal_rtc.c"
#endif
#ifdef STM32L1
#include "stm32l1xx_hal_rtc.c"
#endif
#ifdef STM32L4
#include "stm32l4xx_hal_rtc.c"
#endif

View File

@ -1,29 +0,0 @@
#include "stm32_build_defines.h"
#ifdef STM32F0
#include "stm32f0xx_hal_rtc_ex.c"
#endif
#ifdef STM32F1
#include "stm32f1xx_hal_rtc_ex.c"
#endif
#ifdef STM32F2
#include "stm32f2xx_hal_rtc_ex.c"
#endif
#ifdef STM32F3
#include "stm32f3xx_hal_rtc_ex.c"
#endif
#ifdef STM32F4
#include "stm32f4xx_hal_rtc_ex.c"
#endif
#ifdef STM32F7
#include "stm32f7xx_hal_rtc_ex.c"
#endif
#ifdef STM32L0
#include "stm32l0xx_hal_rtc_ex.c"
#endif
#ifdef STM32L1
#include "stm32l1xx_hal_rtc_ex.c"
#endif
#ifdef STM32L4
#include "stm32l4xx_hal_rtc_ex.c"
#endif

View File

@ -1,29 +0,0 @@
#include "stm32_build_defines.h"
#ifdef STM32F0
#endif
#ifdef STM32F1
#endif
#ifdef STM32F2
#endif
#ifdef STM32F3
#endif
#ifdef STM32F4
#include "stm32f4xx_hal_sai.c"
#endif
#ifdef STM32F7
#include "stm32f7xx_hal_sai.c"
#endif
#ifdef STM32L0
#endif
#ifdef STM32L1
#endif
#ifdef STM32L4
#include "stm32l4xx_hal_sai.c"
#endif

View File

@ -1,29 +0,0 @@
#include "stm32_build_defines.h"
#ifdef STM32F0
#endif
#ifdef STM32F1
#endif
#ifdef STM32F2
#endif
#ifdef STM32F3
#endif
#ifdef STM32F4
#include "stm32f4xx_hal_sai_ex.c"
#endif
#ifdef STM32F7
#include "stm32f7xx_hal_sai_ex.c"
#endif
#ifdef STM32L0
#endif
#ifdef STM32L1
#endif
#ifdef STM32L4
#endif

View File

@ -1,29 +0,0 @@
#include "stm32_build_defines.h"
#ifdef STM32F0
#endif
#ifdef STM32F1
#endif
#ifdef STM32F2
#endif
#ifdef STM32F3
#include "stm32f3xx_hal_sdadc.c"
#endif
#ifdef STM32F4
#endif
#ifdef STM32F7
#endif
#ifdef STM32L0
#endif
#ifdef STM32L1
#endif
#ifdef STM32L4
#endif

View File

@ -1,29 +0,0 @@
#include "stm32_build_defines.h"
#ifdef STM32F0
#endif
#ifdef STM32F1
#endif
#ifdef STM32F2
#endif
#ifdef STM32F3
#endif
#ifdef STM32F4
#include "stm32f4xx_hal_sdram.c"
#endif
#ifdef STM32F7
#include "stm32f7xx_hal_sdram.c"
#endif
#ifdef STM32L0
#endif
#ifdef STM32L1
#endif
#ifdef STM32L4
#endif

View File

@ -1,29 +0,0 @@
#include "stm32_build_defines.h"
#ifdef STM32F0
#include "stm32f0xx_hal_smartcard.c"
#endif
#ifdef STM32F1
#include "stm32f1xx_hal_smartcard.c"
#endif
#ifdef STM32F2
#include "stm32f2xx_hal_smartcard.c"
#endif
#ifdef STM32F3
#include "stm32f3xx_hal_smartcard.c"
#endif
#ifdef STM32F4
#include "stm32f4xx_hal_smartcard.c"
#endif
#ifdef STM32F7
#include "stm32f7xx_hal_smartcard.c"
#endif
#ifdef STM32L0
#include "stm32l0xx_hal_smartcard.c"
#endif
#ifdef STM32L1
#include "stm32l1xx_hal_smartcard.c"
#endif
#ifdef STM32L4
#include "stm32l4xx_hal_smartcard.c"
#endif

View File

@ -1,29 +0,0 @@
#include "stm32_build_defines.h"
#ifdef STM32F0
#include "stm32f0xx_hal_smartcard_ex.c"
#endif
#ifdef STM32F1
#endif
#ifdef STM32F2
#endif
#ifdef STM32F3
#include "stm32f3xx_hal_smartcard_ex.c"
#endif
#ifdef STM32F4
#endif
#ifdef STM32F7
#include "stm32f7xx_hal_smartcard_ex.c"
#endif
#ifdef STM32L0
#include "stm32l0xx_hal_smartcard_ex.c"
#endif
#ifdef STM32L1
#endif
#ifdef STM32L4
#include "stm32l4xx_hal_smartcard_ex.c"
#endif

View File

@ -1,29 +0,0 @@
#include "stm32_build_defines.h"
#ifdef STM32F0
#include "stm32f0xx_hal_smbus.c"
#endif
#ifdef STM32F1
#endif
#ifdef STM32F2
#endif
#ifdef STM32F3
#include "stm32f3xx_hal_smbus.c"
#endif
#ifdef STM32F4
#endif
#ifdef STM32F7
#endif
#ifdef STM32L0
#include "stm32l0xx_hal_smbus.c"
#endif
#ifdef STM32L1
#endif
#ifdef STM32L4
#include "stm32l4xx_hal_smbus.c"
#endif

View File

@ -1,29 +0,0 @@
#include "stm32_build_defines.h"
#ifdef STM32F0
#endif
#ifdef STM32F1
#endif
#ifdef STM32F2
#endif
#ifdef STM32F3
#endif
#ifdef STM32F4
#include "stm32f4xx_hal_spdifrx.c"
#endif
#ifdef STM32F7
#include "stm32f7xx_hal_spdifrx.c"
#endif
#ifdef STM32L0
#endif
#ifdef STM32L1
#endif
#ifdef STM32L4
#endif

View File

@ -1,29 +0,0 @@
#include "stm32_build_defines.h"
#ifdef STM32F0
#include "stm32f0xx_hal_spi_ex.c"
#endif
#ifdef STM32F1
#include "stm32f1xx_hal_spi_ex.c"
#endif
#ifdef STM32F2
#endif
#ifdef STM32F3
#include "stm32f3xx_hal_spi_ex.c"
#endif
#ifdef STM32F4
#endif
#ifdef STM32F7
#endif
#ifdef STM32L0
#endif
#ifdef STM32L1
#include "stm32l1xx_hal_spi_ex.c"
#endif
#ifdef STM32L4
#include "stm32l4xx_hal_spi_ex.c"
#endif

View File

@ -1,29 +0,0 @@
#include "stm32_build_defines.h"
#ifdef STM32F0
#endif
#ifdef STM32F1
#include "stm32f1xx_hal_sram.c"
#endif
#ifdef STM32F2
#include "stm32f2xx_hal_sram.c"
#endif
#ifdef STM32F3
#include "stm32f3xx_hal_sram.c"
#endif
#ifdef STM32F4
#include "stm32f4xx_hal_sram.c"
#endif
#ifdef STM32F7
#include "stm32f7xx_hal_sram.c"
#endif
#ifdef STM32L0
#endif
#ifdef STM32L1
#include "stm32l1xx_hal_sram.c"
#endif
#ifdef STM32L4
#include "stm32l4xx_hal_sram.c"
#endif

View File

@ -1,29 +0,0 @@
#include "stm32_build_defines.h"
#ifdef STM32F0
#endif
#ifdef STM32F1
#endif
#ifdef STM32F2
#endif
#ifdef STM32F3
#endif
#ifdef STM32F4
#endif
#ifdef STM32F7
#endif
#ifdef STM32L0
#endif
#ifdef STM32L1
#endif
#ifdef STM32L4
#include "stm32l4xx_hal_swpmi.c"
#endif

View File

@ -1,29 +0,0 @@
#include "stm32_build_defines.h"
#ifdef STM32F0
#include "stm32f0xx_hal_tsc.c"
#endif
#ifdef STM32F1
#endif
#ifdef STM32F2
#endif
#ifdef STM32F3
#include "stm32f3xx_hal_tsc.c"
#endif
#ifdef STM32F4
#endif
#ifdef STM32F7
#endif
#ifdef STM32L0
#include "stm32l0xx_hal_tsc.c"
#endif
#ifdef STM32L1
#endif
#ifdef STM32L4
#include "stm32l4xx_hal_tsc.c"
#endif

View File

@ -1,29 +0,0 @@
#include "stm32_build_defines.h"
#ifdef STM32F0
#include "stm32f0xx_hal_usart.c"
#endif
#ifdef STM32F1
#include "stm32f1xx_hal_usart.c"
#endif
#ifdef STM32F2
#include "stm32f2xx_hal_usart.c"
#endif
#ifdef STM32F3
#include "stm32f3xx_hal_usart.c"
#endif
#ifdef STM32F4
#include "stm32f4xx_hal_usart.c"
#endif
#ifdef STM32F7
#include "stm32f7xx_hal_usart.c"
#endif
#ifdef STM32L0
#include "stm32l0xx_hal_usart.c"
#endif
#ifdef STM32L1
#include "stm32l1xx_hal_usart.c"
#endif
#ifdef STM32L4
#include "stm32l4xx_hal_usart.c"
#endif

View File

@ -1,29 +0,0 @@
#include "stm32_build_defines.h"
#ifdef STM32F0
#include "stm32f0xx_hal_wwdg.c"
#endif
#ifdef STM32F1
#include "stm32f1xx_hal_wwdg.c"
#endif
#ifdef STM32F2
#include "stm32f2xx_hal_wwdg.c"
#endif
#ifdef STM32F3
#include "stm32f3xx_hal_wwdg.c"
#endif
#ifdef STM32F4
#include "stm32f4xx_hal_wwdg.c"
#endif
#ifdef STM32F7
#include "stm32f7xx_hal_wwdg.c"
#endif
#ifdef STM32L0
#include "stm32l0xx_hal_wwdg.c"
#endif
#ifdef STM32L1
#include "stm32l1xx_hal_wwdg.c"
#endif
#ifdef STM32L4
#include "stm32l4xx_hal_wwdg.c"
#endif

View File

@ -1,29 +0,0 @@
#include "stm32_build_defines.h"
#ifdef STM32F0
#include "stm32f0xx_ll_adc.c"
#endif
#ifdef STM32F1
#endif
#ifdef STM32F2
#endif
#ifdef STM32F3
#include "stm32f3xx_ll_adc.c"
#endif
#ifdef STM32F4
#endif
#ifdef STM32F7
#endif
#ifdef STM32L0
#include "stm32l0xx_ll_adc.c"
#endif
#ifdef STM32L1
#include "stm32l1xx_ll_adc.c"
#endif
#ifdef STM32L4
#include "stm32l4xx_ll_adc.c"
#endif

View File

@ -1,29 +0,0 @@
#include "stm32_build_defines.h"
#ifdef STM32F0
#include "stm32f0xx_ll_comp.c"
#endif
#ifdef STM32F1
#endif
#ifdef STM32F2
#endif
#ifdef STM32F3
#include "stm32f3xx_ll_comp.c"
#endif
#ifdef STM32F4
#endif
#ifdef STM32F7
#endif
#ifdef STM32L0
#include "stm32l0xx_ll_comp.c"
#endif
#ifdef STM32L1
#include "stm32l1xx_ll_comp.c"
#endif
#ifdef STM32L4
#include "stm32l4xx_ll_comp.c"
#endif

View File

@ -1,29 +0,0 @@
#include "stm32_build_defines.h"
#ifdef STM32F0
#include "stm32f0xx_ll_crc.c"
#endif
#ifdef STM32F1
#endif
#ifdef STM32F2
#endif
#ifdef STM32F3
#include "stm32f3xx_ll_crc.c"
#endif
#ifdef STM32F4
#endif
#ifdef STM32F7
#endif
#ifdef STM32L0
#include "stm32l0xx_ll_crc.c"
#endif
#ifdef STM32L1
#include "stm32l1xx_ll_crc.c"
#endif
#ifdef STM32L4
#include "stm32l4xx_ll_crc.c"
#endif

View File

@ -1,29 +0,0 @@
#include "stm32_build_defines.h"
#ifdef STM32F0
#include "stm32f0xx_ll_crs.c"
#endif
#ifdef STM32F1
#endif
#ifdef STM32F2
#endif
#ifdef STM32F3
#endif
#ifdef STM32F4
#endif
#ifdef STM32F7
#endif
#ifdef STM32L0
#include "stm32l0xx_ll_crs.c"
#endif
#ifdef STM32L1
#endif
#ifdef STM32L4
#include "stm32l4xx_ll_crs.c"
#endif

View File

@ -1,29 +0,0 @@
#include "stm32_build_defines.h"
#ifdef STM32F0
#include "stm32f0xx_ll_dac.c"
#endif
#ifdef STM32F1
#endif
#ifdef STM32F2
#endif
#ifdef STM32F3
#include "stm32f3xx_ll_dac.c"
#endif
#ifdef STM32F4
#endif
#ifdef STM32F7
#endif
#ifdef STM32L0
#include "stm32l0xx_ll_dac.c"
#endif
#ifdef STM32L1
#include "stm32l1xx_ll_dac.c"
#endif
#ifdef STM32L4
#include "stm32l4xx_ll_dac.c"
#endif

View File

@ -1,29 +0,0 @@
#include "stm32_build_defines.h"
#ifdef STM32F0
#include "stm32f0xx_ll_dma.c"
#endif
#ifdef STM32F1
#endif
#ifdef STM32F2
#endif
#ifdef STM32F3
#include "stm32f3xx_ll_dma.c"
#endif
#ifdef STM32F4
#endif
#ifdef STM32F7
#endif
#ifdef STM32L0
#include "stm32l0xx_ll_dma.c"
#endif
#ifdef STM32L1
#include "stm32l1xx_ll_dma.c"
#endif
#ifdef STM32L4
#include "stm32l4xx_ll_dma.c"
#endif

View File

@ -1,29 +0,0 @@
#include "stm32_build_defines.h"
#ifdef STM32F0
#include "stm32f0xx_ll_exti.c"
#endif
#ifdef STM32F1
#endif
#ifdef STM32F2
#endif
#ifdef STM32F3
#include "stm32f3xx_ll_exti.c"
#endif
#ifdef STM32F4
#endif
#ifdef STM32F7
#endif
#ifdef STM32L0
#include "stm32l0xx_ll_exti.c"
#endif
#ifdef STM32L1
#include "stm32l1xx_ll_exti.c"
#endif
#ifdef STM32L4
#include "stm32l4xx_ll_exti.c"
#endif

View File

@ -1,29 +0,0 @@
#include "stm32_build_defines.h"
#ifdef STM32F0
#endif
#ifdef STM32F1
#endif
#ifdef STM32F2
#endif
#ifdef STM32F3
#include "stm32f3xx_ll_fmc.c"
#endif
#ifdef STM32F4
#include "stm32f4xx_ll_fmc.c"
#endif
#ifdef STM32F7
#include "stm32f7xx_ll_fmc.c"
#endif
#ifdef STM32L0
#endif
#ifdef STM32L1
#endif
#ifdef STM32L4
#include "stm32l4xx_ll_fmc.c"
#endif

View File

@ -1,29 +0,0 @@
#include "stm32_build_defines.h"
#ifdef STM32F0
#endif
#ifdef STM32F1
#include "stm32f1xx_ll_fsmc.c"
#endif
#ifdef STM32F2
#include "stm32f2xx_ll_fsmc.c"
#endif
#ifdef STM32F3
#endif
#ifdef STM32F4
#include "stm32f4xx_ll_fsmc.c"
#endif
#ifdef STM32F7
#endif
#ifdef STM32L0
#endif
#ifdef STM32L1
#include "stm32l1xx_ll_fsmc.c"
#endif
#ifdef STM32L4
#endif

View File

@ -1,29 +0,0 @@
#include "stm32_build_defines.h"
#ifdef STM32F0
#include "stm32f0xx_ll_gpio.c"
#endif
#ifdef STM32F1
#endif
#ifdef STM32F2
#endif
#ifdef STM32F3
#include "stm32f3xx_ll_gpio.c"
#endif
#ifdef STM32F4
#endif
#ifdef STM32F7
#endif
#ifdef STM32L0
#include "stm32l0xx_ll_gpio.c"
#endif
#ifdef STM32L1
#include "stm32l1xx_ll_gpio.c"
#endif
#ifdef STM32L4
#include "stm32l4xx_ll_gpio.c"
#endif

View File

@ -1,29 +0,0 @@
#include "stm32_build_defines.h"
#ifdef STM32F0
#endif
#ifdef STM32F1
#endif
#ifdef STM32F2
#endif
#ifdef STM32F3
#include "stm32f3xx_ll_hrtim.c"
#endif
#ifdef STM32F4
#endif
#ifdef STM32F7
#endif
#ifdef STM32L0
#endif
#ifdef STM32L1
#endif
#ifdef STM32L4
#endif

View File

@ -1,29 +0,0 @@
#include "stm32_build_defines.h"
#ifdef STM32F0
#include "stm32f0xx_ll_i2c.c"
#endif
#ifdef STM32F1
#endif
#ifdef STM32F2
#endif
#ifdef STM32F3
#include "stm32f3xx_ll_i2c.c"
#endif
#ifdef STM32F4
#endif
#ifdef STM32F7
#endif
#ifdef STM32L0
#include "stm32l0xx_ll_i2c.c"
#endif
#ifdef STM32L1
#include "stm32l1xx_ll_i2c.c"
#endif
#ifdef STM32L4
#include "stm32l4xx_ll_i2c.c"
#endif

Some files were not shown because too many files have changed in this diff Show More