/* Define to prevent recursive inclusion -------------------------------------*/ #ifndef __BSP_H__ #define __BSP_H__ #include "stm32f0xx_ll_rcc.h" #include "stm32f0xx_ll_adc.h" #include "stm32f0xx_ll_crc.h" #include "stm32f0xx_ll_dma.h" #include "stm32f0xx_ll_spi.h" #include "stm32f0xx_ll_usart.h" #include "stm32f0xx_ll_system.h" #include "stm32f0xx_ll_gpio.h" #include "stm32f0xx_ll_exti.h" #include "stm32f0xx_ll_bus.h" #include "stm32f0xx_ll_cortex.h" #include "stm32f0xx_ll_utils.h" #include "stm32f0xx_ll_pwr.h" #include "stm32f0xx_ll_tim.h" #include "stm32f0xx_ll_i2c.h" void SystemClock_Config(void); void MX_IWDG_Init(void); void MX_GPIO_Init(void); void MX_DMA_Init(void); void MX_USART1_UART_Init(void); void MX_USART2_UART_Init(void); void MX_TIM1_Init(void); void MX_TIM6_Init(void); void MX_TIM14_Init(void); void MX_TIM15_Init(void); void MX_TIM16_Init(void); void MX_SPI1_Init(void); void MX_SPI2_Init(void); //void MX_I2C1_Init(void); void Soft_I2C1_Init(void); void MX_ADC_Init(void); #endif /* __BSP__ */