The official Mbed 2 C/C++ SDK provides the software platform and libraries to build your applications.

Dependents:   hello SerialTestv11 SerialTestv12 Sierpinski ... more

mbed 2

This is the mbed 2 library. If you'd like to learn about Mbed OS please see the mbed-os docs.

Committer:
<>
Date:
Thu Oct 27 16:45:56 2016 +0100
Revision:
128:9bcdf88f62b0
Parent:
TARGET_MTS_MDOT_F405RG/stm32f4xx_hal_gpio.h@122:f9eeca106725
Child:
145:64910690c574
Release 128 of the mbed library

Ports for Upcoming Targets


Fixes and Changes

2966: Add kw24 support https://github.com/ARMmbed/mbed-os/pull/2966
3068: MultiTech mDot - clean up PeripheralPins.c and add new pin names https://github.com/ARMmbed/mbed-os/pull/3068
3089: Kinetis HAL: Remove clock initialization code from serial and ticker https://github.com/ARMmbed/mbed-os/pull/3089
2943: [NRF5] NVIC_SetVector functionality https://github.com/ARMmbed/mbed-os/pull/2943
2938: InterruptIn changes in NCS36510 HAL. https://github.com/ARMmbed/mbed-os/pull/2938
3108: Fix sleep function for NRF52. https://github.com/ARMmbed/mbed-os/pull/3108
3076: STM32F1: Correct timer master value reading https://github.com/ARMmbed/mbed-os/pull/3076
3085: Add LOWPOWERTIMER capability for NUCLEO_F303ZE https://github.com/ARMmbed/mbed-os/pull/3085
3046: [BEETLE] Update BLE stack on Beetle board https://github.com/ARMmbed/mbed-os/pull/3046
3122: [Silicon Labs] Update of Silicon Labs HAL https://github.com/ARMmbed/mbed-os/pull/3122
3022: OnSemi RAM usage fix https://github.com/ARMmbed/mbed-os/pull/3022
3121: STM32F3: Correct UART4 and UART5 defines when using DEVICE_SERIAL_ASYNCH https://github.com/ARMmbed/mbed-os/pull/3121
3142: Targets- NUMAKER_PFM_NUC47216 remove mbed 2 https://github.com/ARMmbed/mbed-os/pull/3142

Who changed what in which revision?

UserRevisionLine numberNew contents of line
bogdanm 92:4fc01daae5a5 1 /**
bogdanm 92:4fc01daae5a5 2 ******************************************************************************
bogdanm 92:4fc01daae5a5 3 * @file stm32f4xx_hal_gpio.h
bogdanm 92:4fc01daae5a5 4 * @author MCD Application Team
Kojto 122:f9eeca106725 5 * @version V1.5.0
Kojto 122:f9eeca106725 6 * @date 06-May-2016
bogdanm 92:4fc01daae5a5 7 * @brief Header file of GPIO HAL module.
bogdanm 92:4fc01daae5a5 8 ******************************************************************************
bogdanm 92:4fc01daae5a5 9 * @attention
bogdanm 92:4fc01daae5a5 10 *
Kojto 122:f9eeca106725 11 * <h2><center>&copy; COPYRIGHT(c) 2016 STMicroelectronics</center></h2>
bogdanm 92:4fc01daae5a5 12 *
bogdanm 92:4fc01daae5a5 13 * Redistribution and use in source and binary forms, with or without modification,
bogdanm 92:4fc01daae5a5 14 * are permitted provided that the following conditions are met:
bogdanm 92:4fc01daae5a5 15 * 1. Redistributions of source code must retain the above copyright notice,
bogdanm 92:4fc01daae5a5 16 * this list of conditions and the following disclaimer.
bogdanm 92:4fc01daae5a5 17 * 2. Redistributions in binary form must reproduce the above copyright notice,
bogdanm 92:4fc01daae5a5 18 * this list of conditions and the following disclaimer in the documentation
bogdanm 92:4fc01daae5a5 19 * and/or other materials provided with the distribution.
bogdanm 92:4fc01daae5a5 20 * 3. Neither the name of STMicroelectronics nor the names of its contributors
bogdanm 92:4fc01daae5a5 21 * may be used to endorse or promote products derived from this software
bogdanm 92:4fc01daae5a5 22 * without specific prior written permission.
bogdanm 92:4fc01daae5a5 23 *
bogdanm 92:4fc01daae5a5 24 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
bogdanm 92:4fc01daae5a5 25 * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
bogdanm 92:4fc01daae5a5 26 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
bogdanm 92:4fc01daae5a5 27 * DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE
bogdanm 92:4fc01daae5a5 28 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
bogdanm 92:4fc01daae5a5 29 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
bogdanm 92:4fc01daae5a5 30 * SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
bogdanm 92:4fc01daae5a5 31 * CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
bogdanm 92:4fc01daae5a5 32 * OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
bogdanm 92:4fc01daae5a5 33 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
bogdanm 92:4fc01daae5a5 34 *
bogdanm 92:4fc01daae5a5 35 ******************************************************************************
bogdanm 92:4fc01daae5a5 36 */
bogdanm 92:4fc01daae5a5 37
bogdanm 92:4fc01daae5a5 38 /* Define to prevent recursive inclusion -------------------------------------*/
bogdanm 92:4fc01daae5a5 39 #ifndef __STM32F4xx_HAL_GPIO_H
bogdanm 92:4fc01daae5a5 40 #define __STM32F4xx_HAL_GPIO_H
bogdanm 92:4fc01daae5a5 41
bogdanm 92:4fc01daae5a5 42 #ifdef __cplusplus
bogdanm 92:4fc01daae5a5 43 extern "C" {
bogdanm 92:4fc01daae5a5 44 #endif
bogdanm 92:4fc01daae5a5 45
bogdanm 92:4fc01daae5a5 46 /* Includes ------------------------------------------------------------------*/
bogdanm 92:4fc01daae5a5 47 #include "stm32f4xx_hal_def.h"
bogdanm 92:4fc01daae5a5 48
bogdanm 92:4fc01daae5a5 49 /** @addtogroup STM32F4xx_HAL_Driver
bogdanm 92:4fc01daae5a5 50 * @{
bogdanm 92:4fc01daae5a5 51 */
bogdanm 92:4fc01daae5a5 52
bogdanm 92:4fc01daae5a5 53 /** @addtogroup GPIO
bogdanm 92:4fc01daae5a5 54 * @{
bogdanm 92:4fc01daae5a5 55 */
bogdanm 92:4fc01daae5a5 56
bogdanm 92:4fc01daae5a5 57 /* Exported types ------------------------------------------------------------*/
Kojto 99:dbbf35b96557 58 /** @defgroup GPIO_Exported_Types GPIO Exported Types
Kojto 99:dbbf35b96557 59 * @{
Kojto 99:dbbf35b96557 60 */
bogdanm 92:4fc01daae5a5 61
bogdanm 92:4fc01daae5a5 62 /**
Kojto 99:dbbf35b96557 63 * @brief GPIO Init structure definition
bogdanm 92:4fc01daae5a5 64 */
bogdanm 92:4fc01daae5a5 65 typedef struct
bogdanm 92:4fc01daae5a5 66 {
bogdanm 92:4fc01daae5a5 67 uint32_t Pin; /*!< Specifies the GPIO pins to be configured.
bogdanm 92:4fc01daae5a5 68 This parameter can be any value of @ref GPIO_pins_define */
bogdanm 92:4fc01daae5a5 69
bogdanm 92:4fc01daae5a5 70 uint32_t Mode; /*!< Specifies the operating mode for the selected pins.
bogdanm 92:4fc01daae5a5 71 This parameter can be a value of @ref GPIO_mode_define */
bogdanm 92:4fc01daae5a5 72
bogdanm 92:4fc01daae5a5 73 uint32_t Pull; /*!< Specifies the Pull-up or Pull-Down activation for the selected pins.
bogdanm 92:4fc01daae5a5 74 This parameter can be a value of @ref GPIO_pull_define */
bogdanm 92:4fc01daae5a5 75
bogdanm 92:4fc01daae5a5 76 uint32_t Speed; /*!< Specifies the speed for the selected pins.
bogdanm 92:4fc01daae5a5 77 This parameter can be a value of @ref GPIO_speed_define */
bogdanm 92:4fc01daae5a5 78
bogdanm 92:4fc01daae5a5 79 uint32_t Alternate; /*!< Peripheral to be connected to the selected pins.
Kojto 99:dbbf35b96557 80 This parameter can be a value of @ref GPIO_Alternate_function_selection */
bogdanm 92:4fc01daae5a5 81 }GPIO_InitTypeDef;
bogdanm 92:4fc01daae5a5 82
bogdanm 92:4fc01daae5a5 83 /**
bogdanm 92:4fc01daae5a5 84 * @brief GPIO Bit SET and Bit RESET enumeration
bogdanm 92:4fc01daae5a5 85 */
bogdanm 92:4fc01daae5a5 86 typedef enum
bogdanm 92:4fc01daae5a5 87 {
bogdanm 92:4fc01daae5a5 88 GPIO_PIN_RESET = 0,
bogdanm 92:4fc01daae5a5 89 GPIO_PIN_SET
bogdanm 92:4fc01daae5a5 90 }GPIO_PinState;
Kojto 99:dbbf35b96557 91 /**
Kojto 99:dbbf35b96557 92 * @}
Kojto 99:dbbf35b96557 93 */
bogdanm 92:4fc01daae5a5 94
bogdanm 92:4fc01daae5a5 95 /* Exported constants --------------------------------------------------------*/
bogdanm 92:4fc01daae5a5 96
Kojto 99:dbbf35b96557 97 /** @defgroup GPIO_Exported_Constants GPIO Exported Constants
bogdanm 92:4fc01daae5a5 98 * @{
Kojto 99:dbbf35b96557 99 */
bogdanm 92:4fc01daae5a5 100
Kojto 99:dbbf35b96557 101 /** @defgroup GPIO_pins_define GPIO pins define
bogdanm 92:4fc01daae5a5 102 * @{
bogdanm 92:4fc01daae5a5 103 */
Kojto 122:f9eeca106725 104 #define GPIO_PIN_0 ((uint16_t)0x0001U) /* Pin 0 selected */
Kojto 122:f9eeca106725 105 #define GPIO_PIN_1 ((uint16_t)0x0002U) /* Pin 1 selected */
Kojto 122:f9eeca106725 106 #define GPIO_PIN_2 ((uint16_t)0x0004U) /* Pin 2 selected */
Kojto 122:f9eeca106725 107 #define GPIO_PIN_3 ((uint16_t)0x0008U) /* Pin 3 selected */
Kojto 122:f9eeca106725 108 #define GPIO_PIN_4 ((uint16_t)0x0010U) /* Pin 4 selected */
Kojto 122:f9eeca106725 109 #define GPIO_PIN_5 ((uint16_t)0x0020U) /* Pin 5 selected */
Kojto 122:f9eeca106725 110 #define GPIO_PIN_6 ((uint16_t)0x0040U) /* Pin 6 selected */
Kojto 122:f9eeca106725 111 #define GPIO_PIN_7 ((uint16_t)0x0080U) /* Pin 7 selected */
Kojto 122:f9eeca106725 112 #define GPIO_PIN_8 ((uint16_t)0x0100U) /* Pin 8 selected */
Kojto 122:f9eeca106725 113 #define GPIO_PIN_9 ((uint16_t)0x0200U) /* Pin 9 selected */
Kojto 122:f9eeca106725 114 #define GPIO_PIN_10 ((uint16_t)0x0400U) /* Pin 10 selected */
Kojto 122:f9eeca106725 115 #define GPIO_PIN_11 ((uint16_t)0x0800U) /* Pin 11 selected */
Kojto 122:f9eeca106725 116 #define GPIO_PIN_12 ((uint16_t)0x1000U) /* Pin 12 selected */
Kojto 122:f9eeca106725 117 #define GPIO_PIN_13 ((uint16_t)0x2000U) /* Pin 13 selected */
Kojto 122:f9eeca106725 118 #define GPIO_PIN_14 ((uint16_t)0x4000U) /* Pin 14 selected */
Kojto 122:f9eeca106725 119 #define GPIO_PIN_15 ((uint16_t)0x8000U) /* Pin 15 selected */
Kojto 122:f9eeca106725 120 #define GPIO_PIN_All ((uint16_t)0xFFFFU) /* All pins selected */
bogdanm 92:4fc01daae5a5 121
Kojto 122:f9eeca106725 122 #define GPIO_PIN_MASK ((uint32_t)0x0000FFFFU) /* PIN mask for assert test */
bogdanm 92:4fc01daae5a5 123 /**
bogdanm 92:4fc01daae5a5 124 * @}
bogdanm 92:4fc01daae5a5 125 */
bogdanm 92:4fc01daae5a5 126
Kojto 99:dbbf35b96557 127 /** @defgroup GPIO_mode_define GPIO mode define
bogdanm 92:4fc01daae5a5 128 * @brief GPIO Configuration Mode
bogdanm 92:4fc01daae5a5 129 * Elements values convention: 0xX0yz00YZ
bogdanm 92:4fc01daae5a5 130 * - X : GPIO mode or EXTI Mode
bogdanm 92:4fc01daae5a5 131 * - y : External IT or Event trigger detection
bogdanm 92:4fc01daae5a5 132 * - z : IO configuration on External IT or Event
bogdanm 92:4fc01daae5a5 133 * - Y : Output type (Push Pull or Open Drain)
bogdanm 92:4fc01daae5a5 134 * - Z : IO Direction mode (Input, Output, Alternate or Analog)
bogdanm 92:4fc01daae5a5 135 * @{
bogdanm 92:4fc01daae5a5 136 */
Kojto 122:f9eeca106725 137 #define GPIO_MODE_INPUT ((uint32_t)0x00000000U) /*!< Input Floating Mode */
Kojto 122:f9eeca106725 138 #define GPIO_MODE_OUTPUT_PP ((uint32_t)0x00000001U) /*!< Output Push Pull Mode */
Kojto 122:f9eeca106725 139 #define GPIO_MODE_OUTPUT_OD ((uint32_t)0x00000011U) /*!< Output Open Drain Mode */
Kojto 122:f9eeca106725 140 #define GPIO_MODE_AF_PP ((uint32_t)0x00000002U) /*!< Alternate Function Push Pull Mode */
Kojto 122:f9eeca106725 141 #define GPIO_MODE_AF_OD ((uint32_t)0x00000012U) /*!< Alternate Function Open Drain Mode */
bogdanm 92:4fc01daae5a5 142
Kojto 122:f9eeca106725 143 #define GPIO_MODE_ANALOG ((uint32_t)0x00000003U) /*!< Analog Mode */
bogdanm 92:4fc01daae5a5 144
Kojto 122:f9eeca106725 145 #define GPIO_MODE_IT_RISING ((uint32_t)0x10110000U) /*!< External Interrupt Mode with Rising edge trigger detection */
Kojto 122:f9eeca106725 146 #define GPIO_MODE_IT_FALLING ((uint32_t)0x10210000U) /*!< External Interrupt Mode with Falling edge trigger detection */
Kojto 122:f9eeca106725 147 #define GPIO_MODE_IT_RISING_FALLING ((uint32_t)0x10310000U) /*!< External Interrupt Mode with Rising/Falling edge trigger detection */
bogdanm 92:4fc01daae5a5 148
Kojto 122:f9eeca106725 149 #define GPIO_MODE_EVT_RISING ((uint32_t)0x10120000U) /*!< External Event Mode with Rising edge trigger detection */
Kojto 122:f9eeca106725 150 #define GPIO_MODE_EVT_FALLING ((uint32_t)0x10220000U) /*!< External Event Mode with Falling edge trigger detection */
Kojto 122:f9eeca106725 151 #define GPIO_MODE_EVT_RISING_FALLING ((uint32_t)0x10320000U) /*!< External Event Mode with Rising/Falling edge trigger detection */
bogdanm 92:4fc01daae5a5 152 /**
bogdanm 92:4fc01daae5a5 153 * @}
bogdanm 92:4fc01daae5a5 154 */
Kojto 99:dbbf35b96557 155
Kojto 99:dbbf35b96557 156 /** @defgroup GPIO_speed_define GPIO speed define
bogdanm 92:4fc01daae5a5 157 * @brief GPIO Output Maximum frequency
bogdanm 92:4fc01daae5a5 158 * @{
Kojto 110:165afa46840b 159 */
Kojto 122:f9eeca106725 160 #define GPIO_SPEED_FREQ_LOW ((uint32_t)0x00000000U) /*!< IO works at 2 MHz, please refer to the product datasheet */
Kojto 122:f9eeca106725 161 #define GPIO_SPEED_FREQ_MEDIUM ((uint32_t)0x00000001U) /*!< range 12,5 MHz to 50 MHz, please refer to the product datasheet */
Kojto 122:f9eeca106725 162 #define GPIO_SPEED_FREQ_HIGH ((uint32_t)0x00000002U) /*!< range 25 MHz to 100 MHz, please refer to the product datasheet */
Kojto 122:f9eeca106725 163 #define GPIO_SPEED_FREQ_VERY_HIGH ((uint32_t)0x00000003U) /*!< range 50 MHz to 200 MHz, please refer to the product datasheet */
bogdanm 92:4fc01daae5a5 164 /**
bogdanm 92:4fc01daae5a5 165 * @}
bogdanm 92:4fc01daae5a5 166 */
bogdanm 92:4fc01daae5a5 167
Kojto 99:dbbf35b96557 168 /** @defgroup GPIO_pull_define GPIO pull define
bogdanm 92:4fc01daae5a5 169 * @brief GPIO Pull-Up or Pull-Down Activation
bogdanm 92:4fc01daae5a5 170 * @{
bogdanm 92:4fc01daae5a5 171 */
Kojto 122:f9eeca106725 172 #define GPIO_NOPULL ((uint32_t)0x00000000U) /*!< No Pull-up or Pull-down activation */
Kojto 122:f9eeca106725 173 #define GPIO_PULLUP ((uint32_t)0x00000001U) /*!< Pull-up activation */
Kojto 122:f9eeca106725 174 #define GPIO_PULLDOWN ((uint32_t)0x00000002U) /*!< Pull-down activation */
bogdanm 92:4fc01daae5a5 175 /**
bogdanm 92:4fc01daae5a5 176 * @}
bogdanm 92:4fc01daae5a5 177 */
bogdanm 92:4fc01daae5a5 178
bogdanm 92:4fc01daae5a5 179 /**
bogdanm 92:4fc01daae5a5 180 * @}
bogdanm 92:4fc01daae5a5 181 */
bogdanm 92:4fc01daae5a5 182
bogdanm 92:4fc01daae5a5 183 /* Exported macro ------------------------------------------------------------*/
Kojto 99:dbbf35b96557 184 /** @defgroup GPIO_Exported_Macros GPIO Exported Macros
Kojto 99:dbbf35b96557 185 * @{
Kojto 99:dbbf35b96557 186 */
bogdanm 92:4fc01daae5a5 187
bogdanm 92:4fc01daae5a5 188 /**
bogdanm 92:4fc01daae5a5 189 * @brief Checks whether the specified EXTI line flag is set or not.
bogdanm 92:4fc01daae5a5 190 * @param __EXTI_LINE__: specifies the EXTI line flag to check.
bogdanm 92:4fc01daae5a5 191 * This parameter can be GPIO_PIN_x where x can be(0..15)
bogdanm 92:4fc01daae5a5 192 * @retval The new state of __EXTI_LINE__ (SET or RESET).
bogdanm 92:4fc01daae5a5 193 */
bogdanm 92:4fc01daae5a5 194 #define __HAL_GPIO_EXTI_GET_FLAG(__EXTI_LINE__) (EXTI->PR & (__EXTI_LINE__))
bogdanm 92:4fc01daae5a5 195
bogdanm 92:4fc01daae5a5 196 /**
bogdanm 92:4fc01daae5a5 197 * @brief Clears the EXTI's line pending flags.
bogdanm 92:4fc01daae5a5 198 * @param __EXTI_LINE__: specifies the EXTI lines flags to clear.
bogdanm 92:4fc01daae5a5 199 * This parameter can be any combination of GPIO_PIN_x where x can be (0..15)
bogdanm 92:4fc01daae5a5 200 * @retval None
bogdanm 92:4fc01daae5a5 201 */
bogdanm 92:4fc01daae5a5 202 #define __HAL_GPIO_EXTI_CLEAR_FLAG(__EXTI_LINE__) (EXTI->PR = (__EXTI_LINE__))
bogdanm 92:4fc01daae5a5 203
bogdanm 92:4fc01daae5a5 204 /**
bogdanm 92:4fc01daae5a5 205 * @brief Checks whether the specified EXTI line is asserted or not.
bogdanm 92:4fc01daae5a5 206 * @param __EXTI_LINE__: specifies the EXTI line to check.
bogdanm 92:4fc01daae5a5 207 * This parameter can be GPIO_PIN_x where x can be(0..15)
bogdanm 92:4fc01daae5a5 208 * @retval The new state of __EXTI_LINE__ (SET or RESET).
bogdanm 92:4fc01daae5a5 209 */
bogdanm 92:4fc01daae5a5 210 #define __HAL_GPIO_EXTI_GET_IT(__EXTI_LINE__) (EXTI->PR & (__EXTI_LINE__))
bogdanm 92:4fc01daae5a5 211
bogdanm 92:4fc01daae5a5 212 /**
bogdanm 92:4fc01daae5a5 213 * @brief Clears the EXTI's line pending bits.
bogdanm 92:4fc01daae5a5 214 * @param __EXTI_LINE__: specifies the EXTI lines to clear.
bogdanm 92:4fc01daae5a5 215 * This parameter can be any combination of GPIO_PIN_x where x can be (0..15)
bogdanm 92:4fc01daae5a5 216 * @retval None
bogdanm 92:4fc01daae5a5 217 */
bogdanm 92:4fc01daae5a5 218 #define __HAL_GPIO_EXTI_CLEAR_IT(__EXTI_LINE__) (EXTI->PR = (__EXTI_LINE__))
bogdanm 92:4fc01daae5a5 219
bogdanm 92:4fc01daae5a5 220 /**
bogdanm 92:4fc01daae5a5 221 * @brief Generates a Software interrupt on selected EXTI line.
bogdanm 92:4fc01daae5a5 222 * @param __EXTI_LINE__: specifies the EXTI line to check.
bogdanm 92:4fc01daae5a5 223 * This parameter can be GPIO_PIN_x where x can be(0..15)
bogdanm 92:4fc01daae5a5 224 * @retval None
bogdanm 92:4fc01daae5a5 225 */
bogdanm 92:4fc01daae5a5 226 #define __HAL_GPIO_EXTI_GENERATE_SWIT(__EXTI_LINE__) (EXTI->SWIER |= (__EXTI_LINE__))
Kojto 99:dbbf35b96557 227 /**
Kojto 99:dbbf35b96557 228 * @}
Kojto 99:dbbf35b96557 229 */
bogdanm 92:4fc01daae5a5 230
bogdanm 92:4fc01daae5a5 231 /* Include GPIO HAL Extension module */
bogdanm 92:4fc01daae5a5 232 #include "stm32f4xx_hal_gpio_ex.h"
bogdanm 92:4fc01daae5a5 233
Kojto 99:dbbf35b96557 234 /* Exported functions --------------------------------------------------------*/
Kojto 99:dbbf35b96557 235 /** @addtogroup GPIO_Exported_Functions
Kojto 99:dbbf35b96557 236 * @{
Kojto 99:dbbf35b96557 237 */
Kojto 99:dbbf35b96557 238
Kojto 99:dbbf35b96557 239 /** @addtogroup GPIO_Exported_Functions_Group1
Kojto 99:dbbf35b96557 240 * @{
Kojto 99:dbbf35b96557 241 */
Kojto 99:dbbf35b96557 242 /* Initialization and de-initialization functions *****************************/
bogdanm 92:4fc01daae5a5 243 void HAL_GPIO_Init(GPIO_TypeDef *GPIOx, GPIO_InitTypeDef *GPIO_Init);
bogdanm 92:4fc01daae5a5 244 void HAL_GPIO_DeInit(GPIO_TypeDef *GPIOx, uint32_t GPIO_Pin);
Kojto 99:dbbf35b96557 245 /**
Kojto 99:dbbf35b96557 246 * @}
Kojto 99:dbbf35b96557 247 */
bogdanm 92:4fc01daae5a5 248
Kojto 99:dbbf35b96557 249 /** @addtogroup GPIO_Exported_Functions_Group2
Kojto 99:dbbf35b96557 250 * @{
Kojto 99:dbbf35b96557 251 */
Kojto 99:dbbf35b96557 252 /* IO operation functions *****************************************************/
bogdanm 92:4fc01daae5a5 253 GPIO_PinState HAL_GPIO_ReadPin(GPIO_TypeDef* GPIOx, uint16_t GPIO_Pin);
bogdanm 92:4fc01daae5a5 254 void HAL_GPIO_WritePin(GPIO_TypeDef* GPIOx, uint16_t GPIO_Pin, GPIO_PinState PinState);
bogdanm 92:4fc01daae5a5 255 void HAL_GPIO_TogglePin(GPIO_TypeDef* GPIOx, uint16_t GPIO_Pin);
bogdanm 92:4fc01daae5a5 256 HAL_StatusTypeDef HAL_GPIO_LockPin(GPIO_TypeDef* GPIOx, uint16_t GPIO_Pin);
bogdanm 92:4fc01daae5a5 257 void HAL_GPIO_EXTI_IRQHandler(uint16_t GPIO_Pin);
bogdanm 92:4fc01daae5a5 258 void HAL_GPIO_EXTI_Callback(uint16_t GPIO_Pin);
bogdanm 92:4fc01daae5a5 259
bogdanm 92:4fc01daae5a5 260 /**
bogdanm 92:4fc01daae5a5 261 * @}
bogdanm 92:4fc01daae5a5 262 */
bogdanm 92:4fc01daae5a5 263
bogdanm 92:4fc01daae5a5 264 /**
bogdanm 92:4fc01daae5a5 265 * @}
bogdanm 92:4fc01daae5a5 266 */
Kojto 99:dbbf35b96557 267 /* Private types -------------------------------------------------------------*/
Kojto 99:dbbf35b96557 268 /* Private variables ---------------------------------------------------------*/
Kojto 99:dbbf35b96557 269 /* Private constants ---------------------------------------------------------*/
Kojto 99:dbbf35b96557 270 /** @defgroup GPIO_Private_Constants GPIO Private Constants
Kojto 99:dbbf35b96557 271 * @{
Kojto 99:dbbf35b96557 272 */
Kojto 99:dbbf35b96557 273
Kojto 99:dbbf35b96557 274 /**
Kojto 99:dbbf35b96557 275 * @}
Kojto 99:dbbf35b96557 276 */
Kojto 99:dbbf35b96557 277
Kojto 99:dbbf35b96557 278 /* Private macros ------------------------------------------------------------*/
Kojto 99:dbbf35b96557 279 /** @defgroup GPIO_Private_Macros GPIO Private Macros
Kojto 99:dbbf35b96557 280 * @{
Kojto 99:dbbf35b96557 281 */
Kojto 99:dbbf35b96557 282 #define IS_GPIO_PIN_ACTION(ACTION) (((ACTION) == GPIO_PIN_RESET) || ((ACTION) == GPIO_PIN_SET))
Kojto 122:f9eeca106725 283 #define IS_GPIO_PIN(PIN) (((PIN) & GPIO_PIN_MASK ) != (uint32_t)0x00U)
Kojto 99:dbbf35b96557 284 #define IS_GPIO_MODE(MODE) (((MODE) == GPIO_MODE_INPUT) ||\
Kojto 99:dbbf35b96557 285 ((MODE) == GPIO_MODE_OUTPUT_PP) ||\
Kojto 99:dbbf35b96557 286 ((MODE) == GPIO_MODE_OUTPUT_OD) ||\
Kojto 99:dbbf35b96557 287 ((MODE) == GPIO_MODE_AF_PP) ||\
Kojto 99:dbbf35b96557 288 ((MODE) == GPIO_MODE_AF_OD) ||\
Kojto 99:dbbf35b96557 289 ((MODE) == GPIO_MODE_IT_RISING) ||\
Kojto 99:dbbf35b96557 290 ((MODE) == GPIO_MODE_IT_FALLING) ||\
Kojto 99:dbbf35b96557 291 ((MODE) == GPIO_MODE_IT_RISING_FALLING) ||\
Kojto 99:dbbf35b96557 292 ((MODE) == GPIO_MODE_EVT_RISING) ||\
Kojto 99:dbbf35b96557 293 ((MODE) == GPIO_MODE_EVT_FALLING) ||\
Kojto 99:dbbf35b96557 294 ((MODE) == GPIO_MODE_EVT_RISING_FALLING) ||\
Kojto 99:dbbf35b96557 295 ((MODE) == GPIO_MODE_ANALOG))
Kojto 110:165afa46840b 296 #define IS_GPIO_SPEED(SPEED) (((SPEED) == GPIO_SPEED_FREQ_LOW) || ((SPEED) == GPIO_SPEED_FREQ_MEDIUM) || \
Kojto 110:165afa46840b 297 ((SPEED) == GPIO_SPEED_FREQ_HIGH) || ((SPEED) == GPIO_SPEED_FREQ_VERY_HIGH))
Kojto 99:dbbf35b96557 298 #define IS_GPIO_PULL(PULL) (((PULL) == GPIO_NOPULL) || ((PULL) == GPIO_PULLUP) || \
Kojto 99:dbbf35b96557 299 ((PULL) == GPIO_PULLDOWN))
Kojto 99:dbbf35b96557 300 /**
Kojto 99:dbbf35b96557 301 * @}
Kojto 99:dbbf35b96557 302 */
Kojto 99:dbbf35b96557 303
Kojto 99:dbbf35b96557 304 /* Private functions ---------------------------------------------------------*/
Kojto 99:dbbf35b96557 305 /** @defgroup GPIO_Private_Functions GPIO Private Functions
Kojto 99:dbbf35b96557 306 * @{
Kojto 99:dbbf35b96557 307 */
Kojto 99:dbbf35b96557 308
Kojto 99:dbbf35b96557 309 /**
Kojto 99:dbbf35b96557 310 * @}
Kojto 99:dbbf35b96557 311 */
Kojto 99:dbbf35b96557 312
Kojto 99:dbbf35b96557 313 /**
Kojto 99:dbbf35b96557 314 * @}
Kojto 99:dbbf35b96557 315 */
Kojto 99:dbbf35b96557 316
Kojto 99:dbbf35b96557 317 /**
Kojto 99:dbbf35b96557 318 * @}
Kojto 99:dbbf35b96557 319 */
bogdanm 92:4fc01daae5a5 320
bogdanm 92:4fc01daae5a5 321 #ifdef __cplusplus
bogdanm 92:4fc01daae5a5 322 }
bogdanm 92:4fc01daae5a5 323 #endif
bogdanm 92:4fc01daae5a5 324
bogdanm 92:4fc01daae5a5 325 #endif /* __STM32F4xx_HAL_GPIO_H */
bogdanm 92:4fc01daae5a5 326
bogdanm 92:4fc01daae5a5 327 /************************ (C) COPYRIGHT STMicroelectronics *****END OF FILE****/