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:
Kojto
Date:
Wed Jan 13 09:48:29 2016 +0000
Revision:
112:6f327212ef96
Release 112 of the mbed library

Changes:
- new platforms - STM32 B96B F446, MOTE_L152RC
- nrf51 - fix serial init bug (character sent)
- stm all devices - fix RTC clocking in the init
- stm f0 - SystemInit clock fix, for SetVector()
- RawSerial - fix for microlib (vsnprintf with size 0)

Who changed what in which revision?

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