提交 | 用户 | age
|
bfc108
|
1 |
/* Define to prevent recursive inclusion -------------------------------------*/
|
Q |
2 |
#ifndef __BSP_H__
|
|
3 |
#define __BSP_H__
|
|
4 |
#include "stm32f0xx_ll_adc.h"
|
|
5 |
#include "stm32f0xx_ll_crc.h"
|
|
6 |
#include "stm32f0xx_ll_dma.h"
|
|
7 |
#include "stm32f0xx_ll_spi.h"
|
|
8 |
#include "stm32f0xx_ll_usart.h"
|
|
9 |
#include "stm32f0xx_ll_rcc.h"
|
|
10 |
#include "stm32f0xx_ll_system.h"
|
|
11 |
#include "stm32f0xx_ll_gpio.h"
|
|
12 |
#include "stm32f0xx_ll_exti.h"
|
|
13 |
#include "stm32f0xx_ll_bus.h"
|
|
14 |
#include "stm32f0xx_ll_cortex.h"
|
|
15 |
#include "stm32f0xx_ll_utils.h"
|
|
16 |
#include "stm32f0xx_ll_pwr.h"
|
|
17 |
|
|
18 |
void SystemClock_Config(void);
|
|
19 |
void MX_IWDG_Init(void);
|
|
20 |
void MX_GPIO_Init(void);
|
|
21 |
void MX_DMA_Init(void);
|
|
22 |
void MX_USART1_UART_Init(void);
|
|
23 |
void MX_USART2_UART_Init(void);
|
|
24 |
void MX_SPI1_Init(void);
|
0aeaad
|
25 |
void MX_SPI2_Init(void);
|
Q |
26 |
|
bfc108
|
27 |
void MX_ADC_Init(void);
|
Q |
28 |
|
|
29 |
#endif /* __BSP__ */
|
|
30 |
|