QuakeGod
2024-11-25 9aed5d7e7b3c7bf09da712e9c272ece401a7acc9
提交 | 用户 | age
8b51c7 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"
19
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);
842bb6 26 void MX_USART3_UART_Init(void);
8b51c7 27 void MX_USART5_UART_Init(void);
Q 28 void MX_USART6_UART_Init(void);
29     
30 void MX_TIM6_Init(void);
31 void MX_SPI1_Init(void);
32 void MX_SPI2_Init(void);
33
34 void MX_ADC_Init(void);
35
36 #endif /* __BSP__ */
37