source: trunk/firmware/Inc/gpio.h

Last change on this file was 6, checked in by f.jahn, 3 months ago
File size: 1.5 KB
Line 
1/**
2  ******************************************************************************
3  * File Name          : gpio.h
4  * Description        : This file contains all the functions prototypes for
5  *                      the gpio 
6  ******************************************************************************
7  * @attention
8  *
9  * <h2><center>&copy; Copyright (c) 2019 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
20/* Define to prevent recursive inclusion -------------------------------------*/
21#ifndef __gpio_H
22#define __gpio_H
23#ifdef __cplusplus
24 extern "C" {
25#endif
26
27/* Includes ------------------------------------------------------------------*/
28#include "main.h"
29
30/* USER CODE BEGIN Includes */
31
32/* USER CODE END Includes */
33
34/* USER CODE BEGIN Private defines */
35
36/* USER CODE END Private defines */
37
38void MX_GPIO_Init(void);
39
40/* USER CODE BEGIN Prototypes */
41
42/* USER CODE END Prototypes */
43
44#ifdef __cplusplus
45}
46#endif
47#endif /*__ pinoutConfig_H */
48
49/**
50  * @}
51  */
52
53/**
54  * @}
55  */
56
57/************************ (C) COPYRIGHT STMicroelectronics *****END OF FILE****/
Note: See TracBrowser for help on using the repository browser.