main.h 1.6 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647
  1. /**
  2. ******************************************************************************
  3. * @file main.h
  4. * @author MCU Application Team
  5. * @brief Header for main.c file.
  6. * This file contains the common defines of the application.
  7. ******************************************************************************
  8. * @attention
  9. *
  10. * <h2><center>&copy; Copyright (c) Puya Semiconductor Co.
  11. * All rights reserved.</center></h2>
  12. *
  13. * <h2><center>&copy; Copyright (c) 2016 STMicroelectronics.
  14. * All rights reserved.</center></h2>
  15. *
  16. * This software component is licensed by ST under BSD 3-Clause license,
  17. * the "License"; You may not use this file except in compliance with the
  18. * License. You may obtain a copy of the License at:
  19. * opensource.org/licenses/BSD-3-Clause
  20. *
  21. ******************************************************************************
  22. */
  23. /* Define to prevent recursive inclusion -------------------------------------*/
  24. #ifndef __MAIN_H
  25. #define __MAIN_H
  26. #ifdef __cplusplus
  27. extern "C" {
  28. #endif
  29. /* Includes ------------------------------------------------------------------*/
  30. #include "py32f0xx.h"
  31. /* Private includes ----------------------------------------------------------*/
  32. /* Private defines -----------------------------------------------------------*/
  33. /* Exported variables prototypes ---------------------------------------------*/
  34. /* Exported functions prototypes ---------------------------------------------*/
  35. void APP_ErrorHandler(void);
  36. #ifdef __cplusplus
  37. }
  38. #endif
  39. #endif /* __MAIN_H */
  40. /************************ (C) COPYRIGHT Puya *****END OF FILE******************/