1 /**
2   ******************************************************************************
3   * @file    main.h
4   * @author  MCD Application Team
5   * @brief   Header for main.c module
6   *
7   ******************************************************************************
8   * @attention
9   *
10   * <h2><center>&copy; Copyright (c) 2020 Tai-Action.
11   * All rights reserved.</center></h2>
12   *
13   * This software is licensed by Tai-Action 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 _MAIN_H_
23 #define _MAIN_H_
24 
25 #ifdef __cplusplus
26 extern "C" {
27 #endif /* __cplusplus */
28 
29 /* Includes ------------------------------------------------------------------*/
30 #include "tae32f53xx_ll.h"
31 //#include "dbg/user_debug.h"
32 #include <stdio.h>
33 
34 
35 /** @addtogroup TAE32F53xx_Examples
36   * @{
37   */
38 
39 /** @addtogroup TAE32F53xx_Template
40   * @{
41   */
42 
43 
44 /* Exported constants --------------------------------------------------------*/
45 /* Exported macro ------------------------------------------------------------*/
46 /* Exported types ------------------------------------------------------------*/
47 /* Exported functions --------------------------------------------------------*/
48 /* Private variables ---------------------------------------------------------*/
49 /* Private constants ---------------------------------------------------------*/
50 /* Private macros ------------------------------------------------------------*/
51 /* Private types -------------------------------------------------------------*/
52 /* Private functions ---------------------------------------------------------*/
53 
54 
55 /**
56   * @}
57   */
58 
59 /**
60   * @}
61   */
62 
63 
64 #ifdef __cplusplus
65 }
66 #endif /* __cplusplus */
67 
68 
69 #endif /* _MAIN_H_ */
70 
71 
72 /************************* (C) COPYRIGHT Tai-Action *****END OF FILE***********/
73 
74