QuakeGod
2022-10-17 ea83fa3e67ec0f8a6b8e3f70b63509f1483be25a
提交 | 用户 | age
bfc108 1 /* Define to prevent recursive inclusion -------------------------------------*/
Q 2 #ifndef __BSP_H__
3 #define __BSP_H__
a7db3c 4
Q 5 #include "stm32f0xx_ll_rcc.h"
bfc108 6 #include "stm32f0xx_ll_adc.h"
Q 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"
a7db3c 18 #include "stm32f0xx_ll_tim.h"
bfc108 19
Q 20 void SystemClock_Config(void);
21 void MX_IWDG_Init(void);
22 void MX_GPIO_Init(void);
23 void MX_DMA_Init(void);
24 void MX_USART1_UART_Init(void);
25 void MX_USART2_UART_Init(void);
a7db3c 26 void MX_TIM6_Init(void);
bfc108 27 void MX_SPI1_Init(void);
0aeaad 28 void MX_SPI2_Init(void);
Q 29
bfc108 30 void MX_ADC_Init(void);
Q 31
32 #endif /* __BSP__ */
33