gpio.h 1.4 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849
  1. /**
  2. ******************************************************************************
  3. * @file gpio.h
  4. * @brief This file contains all the function prototypes for
  5. * the gpio.c file
  6. ******************************************************************************
  7. * @attention
  8. *
  9. * <h2><center>&copy; Copyright (c) 2022 STMicroelectronics.
  10. * All rights reserved.</center></h2>
  11. *
  12. * This software component is licensed by ST under BSD 3-Clause license,
  13. * the "License"; You may not use this file except in compliance with the
  14. * License. You may obtain a copy of the License at:
  15. * opensource.org/licenses/BSD-3-Clause
  16. *
  17. ******************************************************************************
  18. */
  19. /* Define to prevent recursive inclusion -------------------------------------*/
  20. #ifndef __GPIO_H__
  21. #define __GPIO_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_GPIO_Init(void);
  32. /* USER CODE BEGIN Prototypes */
  33. /* USER CODE END Prototypes */
  34. #ifdef __cplusplus
  35. }
  36. #endif
  37. #endif /*__ GPIO_H__ */
  38. /************************ (C) COPYRIGHT STMicroelectronics *****END OF FILE****/