1
0

main.h 2.0 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273
  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. /* Define to prevent recursive inclusion -------------------------------------*/
  21. #ifndef _MAIN_H_
  22. #define _MAIN_H_
  23. #ifdef __cplusplus
  24. extern "C" {
  25. #endif /* __cplusplus */
  26. /* Includes ------------------------------------------------------------------*/
  27. #include "tae32f53xx_ll.h"
  28. //#include "dbg/user_debug.h"
  29. #include <stdio.h>
  30. /** @addtogroup TAE32F53xx_Examples
  31. * @{
  32. */
  33. /** @addtogroup TAE32F53xx_Template
  34. * @{
  35. */
  36. /* Exported constants --------------------------------------------------------*/
  37. /* Exported macro ------------------------------------------------------------*/
  38. /* Exported types ------------------------------------------------------------*/
  39. /* Exported functions --------------------------------------------------------*/
  40. /* Private variables ---------------------------------------------------------*/
  41. /* Private constants ---------------------------------------------------------*/
  42. /* Private macros ------------------------------------------------------------*/
  43. /* Private types -------------------------------------------------------------*/
  44. /* Private functions ---------------------------------------------------------*/
  45. /**
  46. * @}
  47. */
  48. /**
  49. * @}
  50. */
  51. #ifdef __cplusplus
  52. }
  53. #endif /* __cplusplus */
  54. #endif /* _MAIN_H_ */
  55. /************************* (C) COPYRIGHT Tai-Action *****END OF FILE***********/