提交 | 用户 | 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); |
|
27 |
void MX_TIM6_Init(void); |
|
28 |
void MX_SPI1_Init(void); |
|
29 |
void MX_SPI2_Init(void); |
005755
|
30 |
void MX_I2C1_Init(void); |
Q |
31 |
void Soft_I2C1_Init(void); |
483170
|
32 |
void MX_ADC_Init(void); |
Q |
33 |
|
|
34 |
#endif /* __BSP__ */ |
|
35 |
|