mbed(SerialHalfDuplex入り)

Fork of mbed by mbed official

Committer:
bogdanm
Date:
Wed Jun 11 15:14:05 2014 +0100
Revision:
85:024bf7f99721
Child:
92:4fc01daae5a5
Release 85 of the mbed library

Main changes:

- K64F Ethernet fixes
- Updated tests
- Fixes for various mbed targets
- Code cleanup: fixed warnings, more consistent code style
- GCC support for K64F

There is a known issue with the I2C interface on some ST targets. If you
find the I2C interface problematic on your ST board, please log a bug
against this on mbed.org.

Who changed what in which revision?

UserRevisionLine numberNew contents of line
bogdanm 85:024bf7f99721 1 /**
bogdanm 85:024bf7f99721 2 ******************************************************************************
bogdanm 85:024bf7f99721 3 * @file stm32f0xx_hal_gpio.h
bogdanm 85:024bf7f99721 4 * @author MCD Application Team
bogdanm 85:024bf7f99721 5 * @version V1.0.0
bogdanm 85:024bf7f99721 6 * @date 28-May-2014
bogdanm 85:024bf7f99721 7 * @brief Header file of GPIO HAL module.
bogdanm 85:024bf7f99721 8 ******************************************************************************
bogdanm 85:024bf7f99721 9 * @attention
bogdanm 85:024bf7f99721 10 *
bogdanm 85:024bf7f99721 11 * <h2><center>&copy; COPYRIGHT(c) 2014 STMicroelectronics</center></h2>
bogdanm 85:024bf7f99721 12 *
bogdanm 85:024bf7f99721 13 * Redistribution and use in source and binary forms, with or without modification,
bogdanm 85:024bf7f99721 14 * are permitted provided that the following conditions are met:
bogdanm 85:024bf7f99721 15 * 1. Redistributions of source code must retain the above copyright notice,
bogdanm 85:024bf7f99721 16 * this list of conditions and the following disclaimer.
bogdanm 85:024bf7f99721 17 * 2. Redistributions in binary form must reproduce the above copyright notice,
bogdanm 85:024bf7f99721 18 * this list of conditions and the following disclaimer in the documentation
bogdanm 85:024bf7f99721 19 * and/or other materials provided with the distribution.
bogdanm 85:024bf7f99721 20 * 3. Neither the name of STMicroelectronics nor the names of its contributors
bogdanm 85:024bf7f99721 21 * may be used to endorse or promote products derived from this software
bogdanm 85:024bf7f99721 22 * without specific prior written permission.
bogdanm 85:024bf7f99721 23 *
bogdanm 85:024bf7f99721 24 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
bogdanm 85:024bf7f99721 25 * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
bogdanm 85:024bf7f99721 26 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
bogdanm 85:024bf7f99721 27 * DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE
bogdanm 85:024bf7f99721 28 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
bogdanm 85:024bf7f99721 29 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
bogdanm 85:024bf7f99721 30 * SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
bogdanm 85:024bf7f99721 31 * CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
bogdanm 85:024bf7f99721 32 * OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
bogdanm 85:024bf7f99721 33 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
bogdanm 85:024bf7f99721 34 *
bogdanm 85:024bf7f99721 35 ******************************************************************************
bogdanm 85:024bf7f99721 36 */
bogdanm 85:024bf7f99721 37
bogdanm 85:024bf7f99721 38 /* Define to prevent recursive inclusion -------------------------------------*/
bogdanm 85:024bf7f99721 39 #ifndef __STM32F0xx_HAL_GPIO_H
bogdanm 85:024bf7f99721 40 #define __STM32F0xx_HAL_GPIO_H
bogdanm 85:024bf7f99721 41
bogdanm 85:024bf7f99721 42 #ifdef __cplusplus
bogdanm 85:024bf7f99721 43 extern "C" {
bogdanm 85:024bf7f99721 44 #endif
bogdanm 85:024bf7f99721 45
bogdanm 85:024bf7f99721 46 /* Includes ------------------------------------------------------------------*/
bogdanm 85:024bf7f99721 47 #include "stm32f0xx_hal_def.h"
bogdanm 85:024bf7f99721 48
bogdanm 85:024bf7f99721 49 /** @addtogroup STM32F0xx_HAL_Driver
bogdanm 85:024bf7f99721 50 * @{
bogdanm 85:024bf7f99721 51 */
bogdanm 85:024bf7f99721 52
bogdanm 85:024bf7f99721 53 /** @addtogroup GPIO
bogdanm 85:024bf7f99721 54 * @{
bogdanm 85:024bf7f99721 55 */
bogdanm 85:024bf7f99721 56
bogdanm 85:024bf7f99721 57 /* Exported types ------------------------------------------------------------*/
bogdanm 85:024bf7f99721 58
bogdanm 85:024bf7f99721 59 /**
bogdanm 85:024bf7f99721 60 * @brief GPIO Init structure definition
bogdanm 85:024bf7f99721 61 */
bogdanm 85:024bf7f99721 62 typedef struct
bogdanm 85:024bf7f99721 63 {
bogdanm 85:024bf7f99721 64 uint32_t Pin; /*!< Specifies the GPIO pins to be configured.
bogdanm 85:024bf7f99721 65 This parameter can be any value of @ref GPIO_pins_define */
bogdanm 85:024bf7f99721 66
bogdanm 85:024bf7f99721 67 uint32_t Mode; /*!< Specifies the operating mode for the selected pins.
bogdanm 85:024bf7f99721 68 This parameter can be a value of @ref GPIO_mode_define */
bogdanm 85:024bf7f99721 69
bogdanm 85:024bf7f99721 70 uint32_t Pull; /*!< Specifies the Pull-up or Pull-Down activation for the selected pins.
bogdanm 85:024bf7f99721 71 This parameter can be a value of @ref GPIO_pull_define */
bogdanm 85:024bf7f99721 72
bogdanm 85:024bf7f99721 73 uint32_t Speed; /*!< Specifies the speed for the selected pins.
bogdanm 85:024bf7f99721 74 This parameter can be a value of @ref GPIO_speed_define */
bogdanm 85:024bf7f99721 75
bogdanm 85:024bf7f99721 76 uint32_t Alternate; /*!< Peripheral to be connected to the selected pins
bogdanm 85:024bf7f99721 77 This parameter can be a value of @ref GPIOEx_Alternate_function_selection */
bogdanm 85:024bf7f99721 78 }GPIO_InitTypeDef;
bogdanm 85:024bf7f99721 79
bogdanm 85:024bf7f99721 80 /**
bogdanm 85:024bf7f99721 81 * @brief GPIO Bit SET and Bit RESET enumeration
bogdanm 85:024bf7f99721 82 */
bogdanm 85:024bf7f99721 83 typedef enum
bogdanm 85:024bf7f99721 84 {
bogdanm 85:024bf7f99721 85 GPIO_PIN_RESET = 0,
bogdanm 85:024bf7f99721 86 GPIO_PIN_SET
bogdanm 85:024bf7f99721 87 }GPIO_PinState;
bogdanm 85:024bf7f99721 88 #define IS_GPIO_PIN_ACTION(ACTION) (((ACTION) == GPIO_PIN_RESET) || ((ACTION) == GPIO_PIN_SET))
bogdanm 85:024bf7f99721 89
bogdanm 85:024bf7f99721 90 /* Exported constants --------------------------------------------------------*/
bogdanm 85:024bf7f99721 91
bogdanm 85:024bf7f99721 92 /** @defgroup GPIO_Exported_Constants GPIO_Exported_Constants
bogdanm 85:024bf7f99721 93 * @{
bogdanm 85:024bf7f99721 94 */
bogdanm 85:024bf7f99721 95
bogdanm 85:024bf7f99721 96 /** @defgroup GPIO_pins_define GPIO_pins_define
bogdanm 85:024bf7f99721 97 * @{
bogdanm 85:024bf7f99721 98 */
bogdanm 85:024bf7f99721 99 #define GPIO_PIN_0 ((uint16_t)0x0001) /* Pin 0 selected */
bogdanm 85:024bf7f99721 100 #define GPIO_PIN_1 ((uint16_t)0x0002) /* Pin 1 selected */
bogdanm 85:024bf7f99721 101 #define GPIO_PIN_2 ((uint16_t)0x0004) /* Pin 2 selected */
bogdanm 85:024bf7f99721 102 #define GPIO_PIN_3 ((uint16_t)0x0008) /* Pin 3 selected */
bogdanm 85:024bf7f99721 103 #define GPIO_PIN_4 ((uint16_t)0x0010) /* Pin 4 selected */
bogdanm 85:024bf7f99721 104 #define GPIO_PIN_5 ((uint16_t)0x0020) /* Pin 5 selected */
bogdanm 85:024bf7f99721 105 #define GPIO_PIN_6 ((uint16_t)0x0040) /* Pin 6 selected */
bogdanm 85:024bf7f99721 106 #define GPIO_PIN_7 ((uint16_t)0x0080) /* Pin 7 selected */
bogdanm 85:024bf7f99721 107 #define GPIO_PIN_8 ((uint16_t)0x0100) /* Pin 8 selected */
bogdanm 85:024bf7f99721 108 #define GPIO_PIN_9 ((uint16_t)0x0200) /* Pin 9 selected */
bogdanm 85:024bf7f99721 109 #define GPIO_PIN_10 ((uint16_t)0x0400) /* Pin 10 selected */
bogdanm 85:024bf7f99721 110 #define GPIO_PIN_11 ((uint16_t)0x0800) /* Pin 11 selected */
bogdanm 85:024bf7f99721 111 #define GPIO_PIN_12 ((uint16_t)0x1000) /* Pin 12 selected */
bogdanm 85:024bf7f99721 112 #define GPIO_PIN_13 ((uint16_t)0x2000) /* Pin 13 selected */
bogdanm 85:024bf7f99721 113 #define GPIO_PIN_14 ((uint16_t)0x4000) /* Pin 14 selected */
bogdanm 85:024bf7f99721 114 #define GPIO_PIN_15 ((uint16_t)0x8000) /* Pin 15 selected */
bogdanm 85:024bf7f99721 115 #define GPIO_PIN_All ((uint16_t)0xFFFF) /* All pins selected */
bogdanm 85:024bf7f99721 116
bogdanm 85:024bf7f99721 117 #define GPIO_PIN_MASK ((uint32_t)0x0000FFFF) /* PIN mask for assert test */
bogdanm 85:024bf7f99721 118
bogdanm 85:024bf7f99721 119 #define IS_GPIO_PIN(PIN) ((PIN & GPIO_PIN_MASK ) != (uint32_t)0x00)
bogdanm 85:024bf7f99721 120 /**
bogdanm 85:024bf7f99721 121 * @}
bogdanm 85:024bf7f99721 122 */
bogdanm 85:024bf7f99721 123
bogdanm 85:024bf7f99721 124 /** @defgroup GPIO_mode_define GPIO_mode_define
bogdanm 85:024bf7f99721 125 * @brief GPIO Configuration Mode
bogdanm 85:024bf7f99721 126 * Elements values convention: 0xX0yz00YZ
bogdanm 85:024bf7f99721 127 * - X : GPIO mode or EXTI Mode
bogdanm 85:024bf7f99721 128 * - y : External IT or Event trigger detection
bogdanm 85:024bf7f99721 129 * - z : IO configuration on External IT or Event
bogdanm 85:024bf7f99721 130 * - Y : Output type (Push Pull or Open Drain)
bogdanm 85:024bf7f99721 131 * - Z : IO Direction mode (Input, Output, Alternate or Analog)
bogdanm 85:024bf7f99721 132 * @{
bogdanm 85:024bf7f99721 133 */
bogdanm 85:024bf7f99721 134 #define GPIO_MODE_INPUT ((uint32_t)0x00000000) /*!< Input Floating Mode */
bogdanm 85:024bf7f99721 135 #define GPIO_MODE_OUTPUT_PP ((uint32_t)0x00000001) /*!< Output Push Pull Mode */
bogdanm 85:024bf7f99721 136 #define GPIO_MODE_OUTPUT_OD ((uint32_t)0x00000011) /*!< Output Open Drain Mode */
bogdanm 85:024bf7f99721 137 #define GPIO_MODE_AF_PP ((uint32_t)0x00000002) /*!< Alternate Function Push Pull Mode */
bogdanm 85:024bf7f99721 138 #define GPIO_MODE_AF_OD ((uint32_t)0x00000012) /*!< Alternate Function Open Drain Mode */
bogdanm 85:024bf7f99721 139
bogdanm 85:024bf7f99721 140 #define GPIO_MODE_ANALOG ((uint32_t)0x00000003) /*!< Analog Mode */
bogdanm 85:024bf7f99721 141
bogdanm 85:024bf7f99721 142 #define GPIO_MODE_IT_RISING ((uint32_t)0x10110000) /*!< External Interrupt Mode with Rising edge trigger detection */
bogdanm 85:024bf7f99721 143 #define GPIO_MODE_IT_FALLING ((uint32_t)0x10210000) /*!< External Interrupt Mode with Falling edge trigger detection */
bogdanm 85:024bf7f99721 144 #define GPIO_MODE_IT_RISING_FALLING ((uint32_t)0x10310000) /*!< External Interrupt Mode with Rising/Falling edge trigger detection */
bogdanm 85:024bf7f99721 145
bogdanm 85:024bf7f99721 146 #define GPIO_MODE_EVT_RISING ((uint32_t)0x10120000) /*!< External Event Mode with Rising edge trigger detection */
bogdanm 85:024bf7f99721 147 #define GPIO_MODE_EVT_FALLING ((uint32_t)0x10220000) /*!< External Event Mode with Falling edge trigger detection */
bogdanm 85:024bf7f99721 148 #define GPIO_MODE_EVT_RISING_FALLING ((uint32_t)0x10320000) /*!< External Event Mode with Rising/Falling edge trigger detection */
bogdanm 85:024bf7f99721 149
bogdanm 85:024bf7f99721 150 #define IS_GPIO_MODE(MODE) (((MODE) == GPIO_MODE_INPUT) ||\
bogdanm 85:024bf7f99721 151 ((MODE) == GPIO_MODE_OUTPUT_PP) ||\
bogdanm 85:024bf7f99721 152 ((MODE) == GPIO_MODE_OUTPUT_OD) ||\
bogdanm 85:024bf7f99721 153 ((MODE) == GPIO_MODE_AF_PP) ||\
bogdanm 85:024bf7f99721 154 ((MODE) == GPIO_MODE_AF_OD) ||\
bogdanm 85:024bf7f99721 155 ((MODE) == GPIO_MODE_IT_RISING) ||\
bogdanm 85:024bf7f99721 156 ((MODE) == GPIO_MODE_IT_FALLING) ||\
bogdanm 85:024bf7f99721 157 ((MODE) == GPIO_MODE_IT_RISING_FALLING) ||\
bogdanm 85:024bf7f99721 158 ((MODE) == GPIO_MODE_EVT_RISING) ||\
bogdanm 85:024bf7f99721 159 ((MODE) == GPIO_MODE_EVT_FALLING) ||\
bogdanm 85:024bf7f99721 160 ((MODE) == GPIO_MODE_EVT_RISING_FALLING) ||\
bogdanm 85:024bf7f99721 161 ((MODE) == GPIO_MODE_ANALOG))
bogdanm 85:024bf7f99721 162
bogdanm 85:024bf7f99721 163 /**
bogdanm 85:024bf7f99721 164 * @}
bogdanm 85:024bf7f99721 165 */
bogdanm 85:024bf7f99721 166
bogdanm 85:024bf7f99721 167 /** @defgroup GPIO_speed_define GPIO_speed_define
bogdanm 85:024bf7f99721 168 * @brief GPIO Output Maximum frequency
bogdanm 85:024bf7f99721 169 * @{
bogdanm 85:024bf7f99721 170 */
bogdanm 85:024bf7f99721 171 #define GPIO_SPEED_LOW ((uint32_t)0x00000000) /*!< Low speed */
bogdanm 85:024bf7f99721 172 #define GPIO_SPEED_MEDIUM ((uint32_t)0x00000001) /*!< Medium speed */
bogdanm 85:024bf7f99721 173 #define GPIO_SPEED_HIGH ((uint32_t)0x00000003) /*!< High speed */
bogdanm 85:024bf7f99721 174
bogdanm 85:024bf7f99721 175 #define IS_GPIO_SPEED(SPEED) (((SPEED) == GPIO_SPEED_LOW) || ((SPEED) == GPIO_SPEED_MEDIUM) || \
bogdanm 85:024bf7f99721 176 ((SPEED) == GPIO_SPEED_HIGH))
bogdanm 85:024bf7f99721 177 /**
bogdanm 85:024bf7f99721 178 * @}
bogdanm 85:024bf7f99721 179 */
bogdanm 85:024bf7f99721 180
bogdanm 85:024bf7f99721 181 /** @defgroup GPIO_pull_define GPIO_pull_define
bogdanm 85:024bf7f99721 182 * @brief GPIO Pull-Up or Pull-Down Activation
bogdanm 85:024bf7f99721 183 * @{
bogdanm 85:024bf7f99721 184 */
bogdanm 85:024bf7f99721 185 #define GPIO_NOPULL ((uint32_t)0x00000000) /*!< No Pull-up or Pull-down activation */
bogdanm 85:024bf7f99721 186 #define GPIO_PULLUP ((uint32_t)0x00000001) /*!< Pull-up activation */
bogdanm 85:024bf7f99721 187 #define GPIO_PULLDOWN ((uint32_t)0x00000002) /*!< Pull-down activation */
bogdanm 85:024bf7f99721 188
bogdanm 85:024bf7f99721 189 #define IS_GPIO_PULL(PULL) (((PULL) == GPIO_NOPULL) || ((PULL) == GPIO_PULLUP) || \
bogdanm 85:024bf7f99721 190 ((PULL) == GPIO_PULLDOWN))
bogdanm 85:024bf7f99721 191 /**
bogdanm 85:024bf7f99721 192 * @}
bogdanm 85:024bf7f99721 193 */
bogdanm 85:024bf7f99721 194
bogdanm 85:024bf7f99721 195 /**
bogdanm 85:024bf7f99721 196 * @}
bogdanm 85:024bf7f99721 197 */
bogdanm 85:024bf7f99721 198
bogdanm 85:024bf7f99721 199 /* Exported macro ------------------------------------------------------------*/
bogdanm 85:024bf7f99721 200
bogdanm 85:024bf7f99721 201 /**
bogdanm 85:024bf7f99721 202 * @brief Checks whether the specified EXTI line flag is set or not.
bogdanm 85:024bf7f99721 203 * @param __EXTI_LINE__: specifies the EXTI line flag to check.
bogdanm 85:024bf7f99721 204 * This parameter can be GPIO_PIN_x where x can be(0..15)
bogdanm 85:024bf7f99721 205 * @retval The new state of __EXTI_LINE__ (SET or RESET).
bogdanm 85:024bf7f99721 206 */
bogdanm 85:024bf7f99721 207 #define __HAL_GPIO_EXTI_GET_FLAG(__EXTI_LINE__) (EXTI->PR & (__EXTI_LINE__))
bogdanm 85:024bf7f99721 208
bogdanm 85:024bf7f99721 209 /**
bogdanm 85:024bf7f99721 210 * @brief Clears the EXTI's line pending flags.
bogdanm 85:024bf7f99721 211 * @param __EXTI_LINE__: specifies the EXTI lines flags to clear.
bogdanm 85:024bf7f99721 212 * This parameter can be any combination of GPIO_PIN_x where x can be (0..15)
bogdanm 85:024bf7f99721 213 * @retval None
bogdanm 85:024bf7f99721 214 */
bogdanm 85:024bf7f99721 215 #define __HAL_GPIO_EXTI_CLEAR_FLAG(__EXTI_LINE__) (EXTI->PR = (__EXTI_LINE__))
bogdanm 85:024bf7f99721 216
bogdanm 85:024bf7f99721 217 /**
bogdanm 85:024bf7f99721 218 * @brief Checks whether the specified EXTI line is asserted or not.
bogdanm 85:024bf7f99721 219 * @param __EXTI_LINE__: specifies the EXTI line to check.
bogdanm 85:024bf7f99721 220 * This parameter can be GPIO_PIN_x where x can be(0..15)
bogdanm 85:024bf7f99721 221 * @retval The new state of __EXTI_LINE__ (SET or RESET).
bogdanm 85:024bf7f99721 222 */
bogdanm 85:024bf7f99721 223 #define __HAL_GPIO_EXTI_GET_IT(__EXTI_LINE__) (EXTI->PR & (__EXTI_LINE__))
bogdanm 85:024bf7f99721 224
bogdanm 85:024bf7f99721 225 /**
bogdanm 85:024bf7f99721 226 * @brief Clears the EXTI's line pending bits.
bogdanm 85:024bf7f99721 227 * @param __EXTI_LINE__: specifies the EXTI lines to clear.
bogdanm 85:024bf7f99721 228 * This parameter can be any combination of GPIO_PIN_x where x can be (0..15)
bogdanm 85:024bf7f99721 229 * @retval None
bogdanm 85:024bf7f99721 230 */
bogdanm 85:024bf7f99721 231 #define __HAL_GPIO_EXTI_CLEAR_IT(__EXTI_LINE__) (EXTI->PR = (__EXTI_LINE__))
bogdanm 85:024bf7f99721 232
bogdanm 85:024bf7f99721 233 /**
bogdanm 85:024bf7f99721 234 * @brief Generates a Software interrupt on selected EXTI line.
bogdanm 85:024bf7f99721 235 * @param __EXTI_LINE__: specifies the EXTI line to check.
bogdanm 85:024bf7f99721 236 * This parameter can be GPIO_PIN_x where x can be(0..15)
bogdanm 85:024bf7f99721 237 * @retval None
bogdanm 85:024bf7f99721 238 */
bogdanm 85:024bf7f99721 239 #define __HAL_GPIO_EXTI_GENERATE_SWIT(__EXTI_LINE__) (EXTI->SWIER |= (__EXTI_LINE__))
bogdanm 85:024bf7f99721 240
bogdanm 85:024bf7f99721 241 /* Include GPIO HAL Extension module */
bogdanm 85:024bf7f99721 242 #include "stm32f0xx_hal_gpio_ex.h"
bogdanm 85:024bf7f99721 243
bogdanm 85:024bf7f99721 244 /* Exported functions --------------------------------------------------------*/
bogdanm 85:024bf7f99721 245 /* Initialization and de-initialization functions *****************************/
bogdanm 85:024bf7f99721 246 void HAL_GPIO_Init(GPIO_TypeDef *GPIOx, GPIO_InitTypeDef *GPIO_Init);
bogdanm 85:024bf7f99721 247 void HAL_GPIO_DeInit(GPIO_TypeDef *GPIOx, uint32_t GPIO_Pin);
bogdanm 85:024bf7f99721 248
bogdanm 85:024bf7f99721 249 /* IO operation functions *****************************************************/
bogdanm 85:024bf7f99721 250 GPIO_PinState HAL_GPIO_ReadPin(GPIO_TypeDef* GPIOx, uint16_t GPIO_Pin);
bogdanm 85:024bf7f99721 251 void HAL_GPIO_WritePin(GPIO_TypeDef* GPIOx, uint16_t GPIO_Pin, GPIO_PinState PinState);
bogdanm 85:024bf7f99721 252 void HAL_GPIO_TogglePin(GPIO_TypeDef* GPIOx, uint16_t GPIO_Pin);
bogdanm 85:024bf7f99721 253 HAL_StatusTypeDef HAL_GPIO_LockPin(GPIO_TypeDef* GPIOx, uint16_t GPIO_Pin);
bogdanm 85:024bf7f99721 254 void HAL_GPIO_EXTI_IRQHandler(uint16_t GPIO_Pin);
bogdanm 85:024bf7f99721 255 void HAL_GPIO_EXTI_Callback(uint16_t GPIO_Pin);
bogdanm 85:024bf7f99721 256
bogdanm 85:024bf7f99721 257 /**
bogdanm 85:024bf7f99721 258 * @}
bogdanm 85:024bf7f99721 259 */
bogdanm 85:024bf7f99721 260
bogdanm 85:024bf7f99721 261 /**
bogdanm 85:024bf7f99721 262 * @}
bogdanm 85:024bf7f99721 263 */
bogdanm 85:024bf7f99721 264
bogdanm 85:024bf7f99721 265 #ifdef __cplusplus
bogdanm 85:024bf7f99721 266 }
bogdanm 85:024bf7f99721 267 #endif
bogdanm 85:024bf7f99721 268
bogdanm 85:024bf7f99721 269 #endif /* __STM32F0xx_HAL_GPIO_H */
bogdanm 85:024bf7f99721 270
bogdanm 85:024bf7f99721 271 /************************ (C) COPYRIGHT STMicroelectronics *****END OF FILE****/