sys.h 1.4 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556
  1. /**
  2. ******************************************************************************
  3. * File Name : SYS.h
  4. * Description : This file provides code for the configuration
  5. * of the SYS instances.
  6. ******************************************************************************
  7. * @attention
  8. *
  9. * <h2><center>&copy; Copyright (c) 2021 STMicroelectronics.
  10. * All rights reserved.</center></h2>
  11. *
  12. * This software component is licensed by ST under Ultimate Liberty license
  13. * SLA0044, the "License"; You may not use this file except in compliance with
  14. * the License. You may obtain a copy of the License at:
  15. * www.st.com/SLA0044
  16. *
  17. ******************************************************************************
  18. */
  19. /* Define to prevent recursive inclusion -------------------------------------*/
  20. #ifndef __sys_H
  21. #define __sys_H
  22. #ifdef __cplusplus
  23. extern "C" {
  24. #endif
  25. /* Includes ------------------------------------------------------------------*/
  26. #include "main.h"
  27. /* USER CODE BEGIN Includes */
  28. /* USER CODE END Includes */
  29. /* USER CODE BEGIN Private defines */
  30. /* USER CODE END Private defines */
  31. void MX_SYS_Init(void);
  32. /* USER CODE BEGIN Prototypes */
  33. /* USER CODE END Prototypes */
  34. #ifdef __cplusplus
  35. }
  36. #endif
  37. #endif /*__ sys_H */
  38. /**
  39. * @}
  40. */
  41. /**
  42. * @}
  43. */
  44. /************************ (C) COPYRIGHT STMicroelectronics *****END OF FILE****/