QuakeGod
2024-11-25 9aed5d7e7b3c7bf09da712e9c272ece401a7acc9
提交 | 用户 | age
483170 1 /* Define to prevent recursive inclusion -------------------------------------*/
Q 2 #ifndef __BSP_H__
3 #define __BSP_H__
4
5 #include "stm32f0xx_ll_rcc.h"
6 #include "stm32f0xx_ll_adc.h"
7 #include "stm32f0xx_ll_crc.h"
8 #include "stm32f0xx_ll_dma.h"
9 #include "stm32f0xx_ll_spi.h"
10 #include "stm32f0xx_ll_usart.h"
11 #include "stm32f0xx_ll_system.h"
12 #include "stm32f0xx_ll_gpio.h"
13 #include "stm32f0xx_ll_exti.h"
14 #include "stm32f0xx_ll_bus.h"
15 #include "stm32f0xx_ll_cortex.h"
16 #include "stm32f0xx_ll_utils.h"
17 #include "stm32f0xx_ll_pwr.h"
18 #include "stm32f0xx_ll_tim.h"
005755 19 #include "stm32f0xx_ll_i2c.h"
483170 20
Q 21 void SystemClock_Config(void);
22 void MX_IWDG_Init(void);
23 void MX_GPIO_Init(void);
24 void MX_DMA_Init(void);
25 void MX_USART1_UART_Init(void);
26 void MX_USART2_UART_Init(void);
9aed5d 27 void MX_TIM1_Init(void);
483170 28 void MX_TIM6_Init(void);
9aed5d 29 void MX_TIM14_Init(void);
Q 30 void MX_TIM15_Init(void);
31 void MX_TIM16_Init(void);
32
483170 33 void MX_SPI1_Init(void);
Q 34 void MX_SPI2_Init(void);
9aed5d 35 //void MX_I2C1_Init(void);
005755 36 void Soft_I2C1_Init(void);
483170 37 void MX_ADC_Init(void);
Q 38
39 #endif /* __BSP__ */
40