1 /**
2   ******************************************************************************
3   * @file    stm32hal.h
4   * @author  MCD Application Team
5   * @brief   HAL Generic Include file.
6   *
7   ******************************************************************************
8   * @attention
9   *
10   * <h2><center>&copy; Copyright (c) 2021 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 
21 /* Define to prevent recursive inclusion -------------------------------------*/
22 #ifndef STM32HAL_H
23 #define STM32HAL_H
24 
25 #ifdef __cplusplus
26  extern "C" {
27 #endif
28 #include "stm32l5xx.h"
29 #include "stm32l5xx_hal.h"
30 #ifdef __cplusplus
31 }
32 #endif
33 
34 #endif /* STM32HAL_H */
35 
36 
37 /************************ (C) COPYRIGHT STMicroelectronics *****END OF FILE****/
38