|
| 1 | +/* USER CODE BEGIN Header */ |
| 2 | +/** |
| 3 | + ****************************************************************************** |
| 4 | + * @file : main.h |
| 5 | + * @brief : Header for main.c file. |
| 6 | + * This file contains the common defines of the application. |
| 7 | + ****************************************************************************** |
| 8 | + * @attention |
| 9 | + * |
| 10 | + * <h2><center>© Copyright (c) 2020 STMicroelectronics. |
| 11 | + * All rights reserved.</center></h2> |
| 12 | + * |
| 13 | + * This software component is licensed by ST under BSD 3-Clause license, |
| 14 | + * the "License"; You may not use this file except in compliance with the |
| 15 | + * License. You may obtain a copy of the License at: |
| 16 | + * opensource.org/licenses/BSD-3-Clause |
| 17 | + * |
| 18 | + ****************************************************************************** |
| 19 | + */ |
| 20 | +/* USER CODE END Header */ |
| 21 | + |
| 22 | +/* Define to prevent recursive inclusion -------------------------------------*/ |
| 23 | +#ifndef __MAIN_H |
| 24 | +#define __MAIN_H |
| 25 | + |
| 26 | +#ifdef __cplusplus |
| 27 | +extern "C" { |
| 28 | +#endif |
| 29 | + |
| 30 | +/* Includes ------------------------------------------------------------------*/ |
| 31 | +#include "stm32g0xx_ll_adc.h" |
| 32 | +#include "stm32g0xx_ll_comp.h" |
| 33 | +#include "stm32g0xx_ll_exti.h" |
| 34 | +#include "stm32g0xx_ll_dma.h" |
| 35 | +#include "stm32g0xx_ll_iwdg.h" |
| 36 | +#include "stm32g0xx_ll_rcc.h" |
| 37 | +#include "stm32g0xx_ll_bus.h" |
| 38 | +#include "stm32g0xx_ll_system.h" |
| 39 | +#include "stm32g0xx_ll_cortex.h" |
| 40 | +#include "stm32g0xx_ll_utils.h" |
| 41 | +#include "stm32g0xx_ll_pwr.h" |
| 42 | +#include "stm32g0xx_ll_tim.h" |
| 43 | +#include "stm32g0xx_ll_gpio.h" |
| 44 | +#include "stm32g0xx_ll_usart.h" |
| 45 | + |
| 46 | +#if defined(USE_FULL_ASSERT) |
| 47 | +#include "stm32_assert.h" |
| 48 | +#endif /* USE_FULL_ASSERT */ |
| 49 | + |
| 50 | +/* Private includes ----------------------------------------------------------*/ |
| 51 | +/* USER CODE BEGIN Includes */ |
| 52 | + |
| 53 | +/* USER CODE END Includes */ |
| 54 | + |
| 55 | +/* Exported types ------------------------------------------------------------*/ |
| 56 | +/* USER CODE BEGIN ET */ |
| 57 | + |
| 58 | +/* USER CODE END ET */ |
| 59 | + |
| 60 | +/* Exported constants --------------------------------------------------------*/ |
| 61 | +/* USER CODE BEGIN EC */ |
| 62 | + |
| 63 | +/* USER CODE END EC */ |
| 64 | + |
| 65 | +/* Exported macro ------------------------------------------------------------*/ |
| 66 | +/* USER CODE BEGIN EM */ |
| 67 | + |
| 68 | +/* USER CODE END EM */ |
| 69 | + |
| 70 | +/* Exported functions prototypes ---------------------------------------------*/ |
| 71 | +void Error_Handler(void); |
| 72 | + |
| 73 | +/* USER CODE BEGIN EFP */ |
| 74 | + |
| 75 | +/* USER CODE END EFP */ |
| 76 | + |
| 77 | +/* Private defines -----------------------------------------------------------*/ |
| 78 | +/* USER CODE BEGIN Private defines */ |
| 79 | + |
| 80 | +/* USER CODE END Private defines */ |
| 81 | + |
| 82 | +#ifdef __cplusplus |
| 83 | +} |
| 84 | +#endif |
| 85 | + |
| 86 | +#endif /* __MAIN_H */ |
| 87 | + |
| 88 | +/************************ (C) COPYRIGHT STMicroelectronics *****END OF FILE****/ |
0 commit comments