Fork of the official mbed C/C SDK provides the software platform and libraries to build your applications for RenBED.

Dependents:   1-RenBuggyTimed RenBED_RGB RenBED_RGB_PWM RenBED_RGB

Fork of mbed by mbed official

Committer:
elijahorr
Date:
Thu Apr 14 07:28:54 2016 +0000
Revision:
121:672067c3ada4
Parent:
116:c0f6e94411f5
.

Who changed what in which revision?

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