1 /**
2 ******************************************************************************
3 * @file stm32h5xx_ll_gpio.h
4 * @author MCD Application Team
5 * @brief Header file of GPIO LL module.
6 ******************************************************************************
7 * @attention
8 *
9 * Copyright (c) 2022 STMicroelectronics.
10 * All rights reserved.
11 *
12 * This software is licensed under terms that can be found in the LICENSE file
13 * in the root directory of this software component.
14 * If no LICENSE file comes with this software, it is provided AS-IS.
15 *
16 ******************************************************************************
17 */
18
19 /* Define to prevent recursive inclusion -------------------------------------*/
20 #ifndef __STM32H5xx_LL_GPIO_H
21 #define __STM32H5xx_LL_GPIO_H
22
23 #ifdef __cplusplus
24 extern "C" {
25 #endif
26
27 /* Includes ------------------------------------------------------------------*/
28 #include "stm32h5xx.h"
29
30 /** @addtogroup STM32H5xx_LL_Driver
31 * @{
32 */
33
34 #if defined (GPIOA) || defined (GPIOB) || defined (GPIOC) || defined (GPIOD) || defined (GPIOE) || defined (GPIOF) || \
35 defined (GPIOG) || defined (GPIOH) || defined (GPIOI)
36
37 /** @defgroup GPIO_LL GPIO
38 * @{
39 */
40
41 /* Private types -------------------------------------------------------------*/
42 /* Private variables ---------------------------------------------------------*/
43 /* Private constants ---------------------------------------------------------*/
44 /* Private macros ------------------------------------------------------------*/
45 #if defined(USE_FULL_LL_DRIVER)
46 /** @defgroup GPIO_LL_Private_Macros GPIO Private Macros
47 * @{
48 */
49
50 /**
51 * @}
52 */
53 #endif /*USE_FULL_LL_DRIVER*/
54
55 /* Exported types ------------------------------------------------------------*/
56 #if defined(USE_FULL_LL_DRIVER)
57 /** @defgroup GPIO_LL_ES_INIT GPIO Exported Init structures
58 * @{
59 */
60
61 /**
62 * @brief LL GPIO Init Structure definition
63 */
64 typedef struct
65 {
66 uint32_t Pin; /*!< Specifies the GPIO pins to be configured.
67 This parameter can be any value of @ref GPIO_LL_EC_PIN */
68
69 uint32_t Mode; /*!< Specifies the operating mode for the selected pins.
70 This parameter can be a value of @ref GPIO_LL_EC_MODE.
71
72 GPIO HW configuration can be modified afterwards using unitary function
73 @ref LL_GPIO_SetPinMode().*/
74
75 uint32_t Speed; /*!< Specifies the speed for the selected pins.
76 This parameter can be a value of @ref GPIO_LL_EC_SPEED.
77
78 GPIO HW configuration can be modified afterwards using unitary function
79 @ref LL_GPIO_SetPinSpeed().*/
80
81 uint32_t OutputType; /*!< Specifies the operating output type for the selected pins.
82 This parameter can be a value of @ref GPIO_LL_EC_OUTPUT.
83
84 GPIO HW configuration can be modified afterwards using unitary function
85 @ref LL_GPIO_SetPinOutputType().*/
86
87 uint32_t Pull; /*!< Specifies the operating Pull-up/Pull down for the selected pins.
88 This parameter can be a value of @ref GPIO_LL_EC_PULL.
89
90 GPIO HW configuration can be modified afterwards using unitary function
91 @ref LL_GPIO_SetPinPull().*/
92
93 uint32_t Alternate; /*!< Specifies the Peripheral to be connected to the selected pins.
94 This parameter can be a value of @ref GPIO_LL_EC_AF.
95
96 GPIO HW configuration can be modified afterwards using unitary function
97 @ref LL_GPIO_SetAFPin_0_7() and LL_GPIO_SetAFPin_8_15().*/
98 } LL_GPIO_InitTypeDef;
99
100 /**
101 * @}
102 */
103 #endif /* USE_FULL_LL_DRIVER */
104
105 /* Exported constants --------------------------------------------------------*/
106 /** @defgroup GPIO_LL_Exported_Constants GPIO Exported Constants
107 * @{
108 */
109
110 /** @defgroup GPIO_LL_EC_PIN PIN
111 * @{
112 */
113 #define LL_GPIO_PIN_0 GPIO_BSRR_BS0 /*!< Select pin 0 */
114 #define LL_GPIO_PIN_1 GPIO_BSRR_BS1 /*!< Select pin 1 */
115 #define LL_GPIO_PIN_2 GPIO_BSRR_BS2 /*!< Select pin 2 */
116 #define LL_GPIO_PIN_3 GPIO_BSRR_BS3 /*!< Select pin 3 */
117 #define LL_GPIO_PIN_4 GPIO_BSRR_BS4 /*!< Select pin 4 */
118 #define LL_GPIO_PIN_5 GPIO_BSRR_BS5 /*!< Select pin 5 */
119 #define LL_GPIO_PIN_6 GPIO_BSRR_BS6 /*!< Select pin 6 */
120 #define LL_GPIO_PIN_7 GPIO_BSRR_BS7 /*!< Select pin 7 */
121 #define LL_GPIO_PIN_8 GPIO_BSRR_BS8 /*!< Select pin 8 */
122 #define LL_GPIO_PIN_9 GPIO_BSRR_BS9 /*!< Select pin 9 */
123 #define LL_GPIO_PIN_10 GPIO_BSRR_BS10 /*!< Select pin 10 */
124 #define LL_GPIO_PIN_11 GPIO_BSRR_BS11 /*!< Select pin 11 */
125 #define LL_GPIO_PIN_12 GPIO_BSRR_BS12 /*!< Select pin 12 */
126 #define LL_GPIO_PIN_13 GPIO_BSRR_BS13 /*!< Select pin 13 */
127 #define LL_GPIO_PIN_14 GPIO_BSRR_BS14 /*!< Select pin 14 */
128 #define LL_GPIO_PIN_15 GPIO_BSRR_BS15 /*!< Select pin 15 */
129 #define LL_GPIO_PIN_ALL (GPIO_BSRR_BS0 | GPIO_BSRR_BS1 | GPIO_BSRR_BS2 | \
130 GPIO_BSRR_BS3 | GPIO_BSRR_BS4 | GPIO_BSRR_BS5 | \
131 GPIO_BSRR_BS6 | GPIO_BSRR_BS7 | GPIO_BSRR_BS8 | \
132 GPIO_BSRR_BS9 | GPIO_BSRR_BS10 | GPIO_BSRR_BS11 | \
133 GPIO_BSRR_BS12 | GPIO_BSRR_BS13 | GPIO_BSRR_BS14 | \
134 GPIO_BSRR_BS15) /*!< Select all pins */
135 /**
136 * @}
137 */
138
139 /** @defgroup GPIO_LL_EC_MODE Mode
140 * @{
141 */
142 #define LL_GPIO_MODE_INPUT (0x00000000U) /*!< Select input mode */
143 #define LL_GPIO_MODE_OUTPUT GPIO_MODER_MODE0_0 /*!< Select output mode */
144 #define LL_GPIO_MODE_ALTERNATE GPIO_MODER_MODE0_1 /*!< Select alternate function mode */
145 #define LL_GPIO_MODE_ANALOG GPIO_MODER_MODE0 /*!< Select analog mode */
146 /**
147 * @}
148 */
149
150 /** @defgroup GPIO_LL_EC_OUTPUT Output Type
151 * @{
152 */
153 #define LL_GPIO_OUTPUT_PUSHPULL (0x00000000U) /*!< Select push-pull as output type */
154 #define LL_GPIO_OUTPUT_OPENDRAIN GPIO_OTYPER_OT0 /*!< Select open-drain as output type */
155 /**
156 * @}
157 */
158
159 /** @defgroup GPIO_LL_EC_SPEED Output Speed
160 * @{
161 */
162 #define LL_GPIO_SPEED_FREQ_LOW (0x00000000U) /*!< Select I/O low output speed */
163 #define LL_GPIO_SPEED_FREQ_MEDIUM GPIO_OSPEEDR_OSPEED0_0 /*!< Select I/O medium output speed */
164 #define LL_GPIO_SPEED_FREQ_HIGH GPIO_OSPEEDR_OSPEED0_1 /*!< Select I/O fast output speed */
165 #define LL_GPIO_SPEED_FREQ_VERY_HIGH GPIO_OSPEEDR_OSPEED0 /*!< Select I/O high output speed */
166 /**
167 * @}
168 */
169 #define LL_GPIO_SPEED_LOW LL_GPIO_SPEED_FREQ_LOW
170 #define LL_GPIO_SPEED_MEDIUM LL_GPIO_SPEED_FREQ_MEDIUM
171 #define LL_GPIO_SPEED_FAST LL_GPIO_SPEED_FREQ_HIGH
172 #define LL_GPIO_SPEED_HIGH LL_GPIO_SPEED_FREQ_VERY_HIGH
173
174 /** @defgroup GPIO_LL_EC_PULL Pull Up Pull Down
175 * @{
176 */
177 #define LL_GPIO_PULL_NO (0x00000000U) /*!< Select I/O no pull */
178 #define LL_GPIO_PULL_UP GPIO_PUPDR_PUPD0_0 /*!< Select I/O pull up */
179 #define LL_GPIO_PULL_DOWN GPIO_PUPDR_PUPD0_1 /*!< Select I/O pull down */
180 /**
181 * @}
182 */
183
184 /** @defgroup GPIO_LL_EC_AF Alternate Function
185 * @{
186 */
187 #define LL_GPIO_AF_0 (0x0000000U) /*!< Select alternate function 0 */
188 #define LL_GPIO_AF_1 (0x0000001U) /*!< Select alternate function 1 */
189 #define LL_GPIO_AF_2 (0x0000002U) /*!< Select alternate function 2 */
190 #define LL_GPIO_AF_3 (0x0000003U) /*!< Select alternate function 3 */
191 #define LL_GPIO_AF_4 (0x0000004U) /*!< Select alternate function 4 */
192 #define LL_GPIO_AF_5 (0x0000005U) /*!< Select alternate function 5 */
193 #define LL_GPIO_AF_6 (0x0000006U) /*!< Select alternate function 6 */
194 #define LL_GPIO_AF_7 (0x0000007U) /*!< Select alternate function 7 */
195 #define LL_GPIO_AF_8 (0x0000008U) /*!< Select alternate function 8 */
196 #define LL_GPIO_AF_9 (0x0000009U) /*!< Select alternate function 9 */
197 #define LL_GPIO_AF_10 (0x000000AU) /*!< Select alternate function 10 */
198 #define LL_GPIO_AF_11 (0x000000BU) /*!< Select alternate function 11 */
199 #define LL_GPIO_AF_12 (0x000000CU) /*!< Select alternate function 12 */
200 #define LL_GPIO_AF_13 (0x000000DU) /*!< Select alternate function 13 */
201 #define LL_GPIO_AF_14 (0x000000EU) /*!< Select alternate function 14 */
202 #define LL_GPIO_AF_15 (0x000000FU) /*!< Select alternate function 15 */
203 /**
204 * @}
205 */
206
207 /**
208 * @}
209 */
210
211 /* Exported macro ------------------------------------------------------------*/
212 /** @defgroup GPIO_LL_Exported_Macros GPIO Exported Macros
213 * @{
214 */
215
216 /** @defgroup GPIO_LL_EM_WRITE_READ Common Write and read registers Macros
217 * @{
218 */
219
220 /**
221 * @brief Write a value in GPIO register
222 * @param __INSTANCE__ GPIO Instance
223 * @param __REG__ Register to be written
224 * @param __VALUE__ Value to be written in the register
225 * @retval None
226 */
227 #define LL_GPIO_WriteReg(__INSTANCE__, __REG__, __VALUE__) WRITE_REG(__INSTANCE__->__REG__, (__VALUE__))
228
229 /**
230 * @brief Read a value in GPIO register
231 * @param __INSTANCE__ GPIO Instance
232 * @param __REG__ Register to be read
233 * @retval Register value
234 */
235 #define LL_GPIO_ReadReg(__INSTANCE__, __REG__) READ_REG(__INSTANCE__->__REG__)
236 /**
237 * @}
238 */
239
240 /**
241 * @}
242 */
243
244 /* Exported functions --------------------------------------------------------*/
245 /** @defgroup GPIO_LL_Exported_Functions GPIO Exported Functions
246 * @{
247 */
248
249 /** @defgroup GPIO_LL_EF_Port_Configuration Port Configuration
250 * @{
251 */
252
253 /**
254 * @brief Configure gpio mode for a dedicated pin on dedicated port.
255 * @note I/O mode can be Input mode, General purpose output, Alternate function mode or Analog.
256 * @note Warning: only one pin can be passed as parameter.
257 * @rmtoll MODER MODEy LL_GPIO_SetPinMode
258 * @param GPIOx GPIO Port
259 * @param Pin This parameter can be one of the following values:
260 * @arg @ref LL_GPIO_PIN_0
261 * @arg @ref LL_GPIO_PIN_1
262 * @arg @ref LL_GPIO_PIN_2
263 * @arg @ref LL_GPIO_PIN_3
264 * @arg @ref LL_GPIO_PIN_4
265 * @arg @ref LL_GPIO_PIN_5
266 * @arg @ref LL_GPIO_PIN_6
267 * @arg @ref LL_GPIO_PIN_7
268 * @arg @ref LL_GPIO_PIN_8
269 * @arg @ref LL_GPIO_PIN_9
270 * @arg @ref LL_GPIO_PIN_10
271 * @arg @ref LL_GPIO_PIN_11
272 * @arg @ref LL_GPIO_PIN_12
273 * @arg @ref LL_GPIO_PIN_13
274 * @arg @ref LL_GPIO_PIN_14
275 * @arg @ref LL_GPIO_PIN_15
276 * @param Mode This parameter can be one of the following values:
277 * @arg @ref LL_GPIO_MODE_INPUT
278 * @arg @ref LL_GPIO_MODE_OUTPUT
279 * @arg @ref LL_GPIO_MODE_ALTERNATE
280 * @arg @ref LL_GPIO_MODE_ANALOG
281 * @retval None
282 */
LL_GPIO_SetPinMode(GPIO_TypeDef * GPIOx,uint32_t Pin,uint32_t Mode)283 __STATIC_INLINE void LL_GPIO_SetPinMode(GPIO_TypeDef *GPIOx, uint32_t Pin, uint32_t Mode)
284 {
285 MODIFY_REG(GPIOx->MODER, (GPIO_MODER_MODE0 << (POSITION_VAL(Pin) * 2U)), (Mode << (POSITION_VAL(Pin) * 2U)));
286 }
287
288 /**
289 * @brief Return gpio mode for a dedicated pin on dedicated port.
290 * @note I/O mode can be Input mode, General purpose output, Alternate function mode or Analog.
291 * @note Warning: only one pin can be passed as parameter.
292 * @rmtoll MODER MODEy LL_GPIO_GetPinMode
293 * @param GPIOx GPIO Port
294 * @param Pin This parameter can be one of the following values:
295 * @arg @ref LL_GPIO_PIN_0
296 * @arg @ref LL_GPIO_PIN_1
297 * @arg @ref LL_GPIO_PIN_2
298 * @arg @ref LL_GPIO_PIN_3
299 * @arg @ref LL_GPIO_PIN_4
300 * @arg @ref LL_GPIO_PIN_5
301 * @arg @ref LL_GPIO_PIN_6
302 * @arg @ref LL_GPIO_PIN_7
303 * @arg @ref LL_GPIO_PIN_8
304 * @arg @ref LL_GPIO_PIN_9
305 * @arg @ref LL_GPIO_PIN_10
306 * @arg @ref LL_GPIO_PIN_11
307 * @arg @ref LL_GPIO_PIN_12
308 * @arg @ref LL_GPIO_PIN_13
309 * @arg @ref LL_GPIO_PIN_14
310 * @arg @ref LL_GPIO_PIN_15
311 * @retval Returned value can be one of the following values:
312 * @arg @ref LL_GPIO_MODE_INPUT
313 * @arg @ref LL_GPIO_MODE_OUTPUT
314 * @arg @ref LL_GPIO_MODE_ALTERNATE
315 * @arg @ref LL_GPIO_MODE_ANALOG
316 */
LL_GPIO_GetPinMode(GPIO_TypeDef * GPIOx,uint32_t Pin)317 __STATIC_INLINE uint32_t LL_GPIO_GetPinMode(GPIO_TypeDef *GPIOx, uint32_t Pin)
318 {
319 return (uint32_t)(READ_BIT(GPIOx->MODER,
320 (GPIO_MODER_MODE0 << (POSITION_VAL(Pin) * 2U))) >> (POSITION_VAL(Pin) * 2U));
321 }
322
323 /**
324 * @brief Configure gpio output type for several pins on dedicated port.
325 * @note Output type as to be set when gpio pin is in output or
326 * alternate modes. Possible type are Push-pull or Open-drain.
327 * @rmtoll OTYPER OTy LL_GPIO_SetPinOutputType
328 * @param GPIOx GPIO Port
329 * @param PinMask This parameter can be a combination of the following values:
330 * @arg @ref LL_GPIO_PIN_0
331 * @arg @ref LL_GPIO_PIN_1
332 * @arg @ref LL_GPIO_PIN_2
333 * @arg @ref LL_GPIO_PIN_3
334 * @arg @ref LL_GPIO_PIN_4
335 * @arg @ref LL_GPIO_PIN_5
336 * @arg @ref LL_GPIO_PIN_6
337 * @arg @ref LL_GPIO_PIN_7
338 * @arg @ref LL_GPIO_PIN_8
339 * @arg @ref LL_GPIO_PIN_9
340 * @arg @ref LL_GPIO_PIN_10
341 * @arg @ref LL_GPIO_PIN_11
342 * @arg @ref LL_GPIO_PIN_12
343 * @arg @ref LL_GPIO_PIN_13
344 * @arg @ref LL_GPIO_PIN_14
345 * @arg @ref LL_GPIO_PIN_15
346 * @arg @ref LL_GPIO_PIN_ALL
347 * @param OutputType This parameter can be one of the following values:
348 * @arg @ref LL_GPIO_OUTPUT_PUSHPULL
349 * @arg @ref LL_GPIO_OUTPUT_OPENDRAIN
350 * @retval None
351 */
LL_GPIO_SetPinOutputType(GPIO_TypeDef * GPIOx,uint32_t PinMask,uint32_t OutputType)352 __STATIC_INLINE void LL_GPIO_SetPinOutputType(GPIO_TypeDef *GPIOx, uint32_t PinMask, uint32_t OutputType)
353 {
354 MODIFY_REG(GPIOx->OTYPER, PinMask, (PinMask * OutputType));
355 }
356
357 /**
358 * @brief Return gpio output type for several pins on dedicated port.
359 * @note Output type as to be set when gpio pin is in output or
360 * alternate modes. Possible type are Push-pull or Open-drain.
361 * @note Warning: only one pin can be passed as parameter.
362 * @rmtoll OTYPER OTy LL_GPIO_GetPinOutputType
363 * @param GPIOx GPIO Port
364 * @param Pin This parameter can be one of the following values:
365 * @arg @ref LL_GPIO_PIN_0
366 * @arg @ref LL_GPIO_PIN_1
367 * @arg @ref LL_GPIO_PIN_2
368 * @arg @ref LL_GPIO_PIN_3
369 * @arg @ref LL_GPIO_PIN_4
370 * @arg @ref LL_GPIO_PIN_5
371 * @arg @ref LL_GPIO_PIN_6
372 * @arg @ref LL_GPIO_PIN_7
373 * @arg @ref LL_GPIO_PIN_8
374 * @arg @ref LL_GPIO_PIN_9
375 * @arg @ref LL_GPIO_PIN_10
376 * @arg @ref LL_GPIO_PIN_11
377 * @arg @ref LL_GPIO_PIN_12
378 * @arg @ref LL_GPIO_PIN_13
379 * @arg @ref LL_GPIO_PIN_14
380 * @arg @ref LL_GPIO_PIN_15
381 * @arg @ref LL_GPIO_PIN_ALL
382 * @retval Returned value can be one of the following values:
383 * @arg @ref LL_GPIO_OUTPUT_PUSHPULL
384 * @arg @ref LL_GPIO_OUTPUT_OPENDRAIN
385 */
LL_GPIO_GetPinOutputType(GPIO_TypeDef * GPIOx,uint32_t Pin)386 __STATIC_INLINE uint32_t LL_GPIO_GetPinOutputType(GPIO_TypeDef *GPIOx, uint32_t Pin)
387 {
388 return (uint32_t)(READ_BIT(GPIOx->OTYPER, Pin) >> POSITION_VAL(Pin));
389 }
390
391 /**
392 * @brief Configure gpio speed for a dedicated pin on dedicated port.
393 * @note I/O speed can be Low, Medium, Fast or High speed.
394 * @note Warning: only one pin can be passed as parameter.
395 * @note Refer to datasheet for frequency specifications and the power
396 * supply and load conditions for each speed.
397 * @rmtoll OSPEEDR OSPEEDy LL_GPIO_SetPinSpeed
398 * @param GPIOx GPIO Port
399 * @param Pin This parameter can be one of the following values:
400 * @arg @ref LL_GPIO_PIN_0
401 * @arg @ref LL_GPIO_PIN_1
402 * @arg @ref LL_GPIO_PIN_2
403 * @arg @ref LL_GPIO_PIN_3
404 * @arg @ref LL_GPIO_PIN_4
405 * @arg @ref LL_GPIO_PIN_5
406 * @arg @ref LL_GPIO_PIN_6
407 * @arg @ref LL_GPIO_PIN_7
408 * @arg @ref LL_GPIO_PIN_8
409 * @arg @ref LL_GPIO_PIN_9
410 * @arg @ref LL_GPIO_PIN_10
411 * @arg @ref LL_GPIO_PIN_11
412 * @arg @ref LL_GPIO_PIN_12
413 * @arg @ref LL_GPIO_PIN_13
414 * @arg @ref LL_GPIO_PIN_14
415 * @arg @ref LL_GPIO_PIN_15
416 * @param Speed This parameter can be one of the following values:
417 * @arg @ref LL_GPIO_SPEED_FREQ_LOW
418 * @arg @ref LL_GPIO_SPEED_FREQ_MEDIUM
419 * @arg @ref LL_GPIO_SPEED_FREQ_HIGH
420 * @arg @ref LL_GPIO_SPEED_FREQ_VERY_HIGH
421 * @retval None
422 */
LL_GPIO_SetPinSpeed(GPIO_TypeDef * GPIOx,uint32_t Pin,uint32_t Speed)423 __STATIC_INLINE void LL_GPIO_SetPinSpeed(GPIO_TypeDef *GPIOx, uint32_t Pin, uint32_t Speed)
424 {
425 MODIFY_REG(GPIOx->OSPEEDR, (GPIO_OSPEEDR_OSPEED0 << (POSITION_VAL(Pin) * 2U)),
426 (Speed << (POSITION_VAL(Pin) * 2U)));
427 }
428
429 /**
430 * @brief Return gpio speed for a dedicated pin on dedicated port.
431 * @note I/O speed can be Low, Medium, Fast or High speed.
432 * @note Warning: only one pin can be passed as parameter.
433 * @note Refer to datasheet for frequency specifications and the power
434 * supply and load conditions for each speed.
435 * @rmtoll OSPEEDR OSPEEDy LL_GPIO_GetPinSpeed
436 * @param GPIOx GPIO Port
437 * @param Pin This parameter can be one of the following values:
438 * @arg @ref LL_GPIO_PIN_0
439 * @arg @ref LL_GPIO_PIN_1
440 * @arg @ref LL_GPIO_PIN_2
441 * @arg @ref LL_GPIO_PIN_3
442 * @arg @ref LL_GPIO_PIN_4
443 * @arg @ref LL_GPIO_PIN_5
444 * @arg @ref LL_GPIO_PIN_6
445 * @arg @ref LL_GPIO_PIN_7
446 * @arg @ref LL_GPIO_PIN_8
447 * @arg @ref LL_GPIO_PIN_9
448 * @arg @ref LL_GPIO_PIN_10
449 * @arg @ref LL_GPIO_PIN_11
450 * @arg @ref LL_GPIO_PIN_12
451 * @arg @ref LL_GPIO_PIN_13
452 * @arg @ref LL_GPIO_PIN_14
453 * @arg @ref LL_GPIO_PIN_15
454 * @retval Returned value can be one of the following values:
455 * @arg @ref LL_GPIO_SPEED_FREQ_LOW
456 * @arg @ref LL_GPIO_SPEED_FREQ_MEDIUM
457 * @arg @ref LL_GPIO_SPEED_FREQ_HIGH
458 * @arg @ref LL_GPIO_SPEED_FREQ_VERY_HIGH
459 */
LL_GPIO_GetPinSpeed(GPIO_TypeDef * GPIOx,uint32_t Pin)460 __STATIC_INLINE uint32_t LL_GPIO_GetPinSpeed(GPIO_TypeDef *GPIOx, uint32_t Pin)
461 {
462 return (uint32_t)(READ_BIT(GPIOx->OSPEEDR,
463 (GPIO_OSPEEDR_OSPEED0 << (POSITION_VAL(Pin) * 2U))) >> (POSITION_VAL(Pin) * 2U));
464 }
465
466 /**
467 * @brief Configure gpio pull-up or pull-down for a dedicated pin on a dedicated port.
468 * @note Warning: only one pin can be passed as parameter.
469 * @rmtoll PUPDR PUPDy LL_GPIO_SetPinPull
470 * @param GPIOx GPIO Port
471 * @param Pin This parameter can be one of the following values:
472 * @arg @ref LL_GPIO_PIN_0
473 * @arg @ref LL_GPIO_PIN_1
474 * @arg @ref LL_GPIO_PIN_2
475 * @arg @ref LL_GPIO_PIN_3
476 * @arg @ref LL_GPIO_PIN_4
477 * @arg @ref LL_GPIO_PIN_5
478 * @arg @ref LL_GPIO_PIN_6
479 * @arg @ref LL_GPIO_PIN_7
480 * @arg @ref LL_GPIO_PIN_8
481 * @arg @ref LL_GPIO_PIN_9
482 * @arg @ref LL_GPIO_PIN_10
483 * @arg @ref LL_GPIO_PIN_11
484 * @arg @ref LL_GPIO_PIN_12
485 * @arg @ref LL_GPIO_PIN_13
486 * @arg @ref LL_GPIO_PIN_14
487 * @arg @ref LL_GPIO_PIN_15
488 * @param Pull This parameter can be one of the following values:
489 * @arg @ref LL_GPIO_PULL_NO
490 * @arg @ref LL_GPIO_PULL_UP
491 * @arg @ref LL_GPIO_PULL_DOWN
492 * @retval None
493 */
LL_GPIO_SetPinPull(GPIO_TypeDef * GPIOx,uint32_t Pin,uint32_t Pull)494 __STATIC_INLINE void LL_GPIO_SetPinPull(GPIO_TypeDef *GPIOx, uint32_t Pin, uint32_t Pull)
495 {
496 MODIFY_REG(GPIOx->PUPDR, (GPIO_PUPDR_PUPD0 << (POSITION_VAL(Pin) * 2U)), (Pull << (POSITION_VAL(Pin) * 2U)));
497 }
498
499 /**
500 * @brief Return gpio pull-up or pull-down for a dedicated pin on a dedicated port
501 * @note Warning: only one pin can be passed as parameter.
502 * @rmtoll PUPDR PUPDy LL_GPIO_GetPinPull
503 * @param GPIOx GPIO Port
504 * @param Pin This parameter can be one of the following values:
505 * @arg @ref LL_GPIO_PIN_0
506 * @arg @ref LL_GPIO_PIN_1
507 * @arg @ref LL_GPIO_PIN_2
508 * @arg @ref LL_GPIO_PIN_3
509 * @arg @ref LL_GPIO_PIN_4
510 * @arg @ref LL_GPIO_PIN_5
511 * @arg @ref LL_GPIO_PIN_6
512 * @arg @ref LL_GPIO_PIN_7
513 * @arg @ref LL_GPIO_PIN_8
514 * @arg @ref LL_GPIO_PIN_9
515 * @arg @ref LL_GPIO_PIN_10
516 * @arg @ref LL_GPIO_PIN_11
517 * @arg @ref LL_GPIO_PIN_12
518 * @arg @ref LL_GPIO_PIN_13
519 * @arg @ref LL_GPIO_PIN_14
520 * @arg @ref LL_GPIO_PIN_15
521 * @retval Returned value can be one of the following values:
522 * @arg @ref LL_GPIO_PULL_NO
523 * @arg @ref LL_GPIO_PULL_UP
524 * @arg @ref LL_GPIO_PULL_DOWN
525 */
LL_GPIO_GetPinPull(GPIO_TypeDef * GPIOx,uint32_t Pin)526 __STATIC_INLINE uint32_t LL_GPIO_GetPinPull(GPIO_TypeDef *GPIOx, uint32_t Pin)
527 {
528 return (uint32_t)(READ_BIT(GPIOx->PUPDR,
529 (GPIO_PUPDR_PUPD0 << (POSITION_VAL(Pin) * 2U))) >> (POSITION_VAL(Pin) * 2U));
530 }
531
532 /**
533 * @brief Configure gpio alternate function of a dedicated pin from 0 to 7 for a dedicated port.
534 * @note Possible values are from AF0 to AF15 depending on target.
535 * @note Warning: only one pin can be passed as parameter.
536 * @rmtoll AFRL AFSELy LL_GPIO_SetAFPin_0_7
537 * @param GPIOx GPIO Port
538 * @param Pin This parameter can be one of the following values:
539 * @arg @ref LL_GPIO_PIN_0
540 * @arg @ref LL_GPIO_PIN_1
541 * @arg @ref LL_GPIO_PIN_2
542 * @arg @ref LL_GPIO_PIN_3
543 * @arg @ref LL_GPIO_PIN_4
544 * @arg @ref LL_GPIO_PIN_5
545 * @arg @ref LL_GPIO_PIN_6
546 * @arg @ref LL_GPIO_PIN_7
547 * @param Alternate This parameter can be one of the following values:
548 * @arg @ref LL_GPIO_AF_0
549 * @arg @ref LL_GPIO_AF_1
550 * @arg @ref LL_GPIO_AF_2
551 * @arg @ref LL_GPIO_AF_3
552 * @arg @ref LL_GPIO_AF_4
553 * @arg @ref LL_GPIO_AF_5
554 * @arg @ref LL_GPIO_AF_6
555 * @arg @ref LL_GPIO_AF_7
556 * @arg @ref LL_GPIO_AF_8
557 * @arg @ref LL_GPIO_AF_9
558 * @arg @ref LL_GPIO_AF_10
559 * @arg @ref LL_GPIO_AF_11
560 * @arg @ref LL_GPIO_AF_12
561 * @arg @ref LL_GPIO_AF_13
562 * @arg @ref LL_GPIO_AF_14
563 * @arg @ref LL_GPIO_AF_15
564 * @retval None
565 */
LL_GPIO_SetAFPin_0_7(GPIO_TypeDef * GPIOx,uint32_t Pin,uint32_t Alternate)566 __STATIC_INLINE void LL_GPIO_SetAFPin_0_7(GPIO_TypeDef *GPIOx, uint32_t Pin, uint32_t Alternate)
567 {
568 MODIFY_REG(GPIOx->AFR[0], (GPIO_AFRL_AFSEL0 << (POSITION_VAL(Pin) * 4U)),
569 (Alternate << (POSITION_VAL(Pin) * 4U)));
570 }
571
572 /**
573 * @brief Return gpio alternate function of a dedicated pin from 0 to 7 for a dedicated port.
574 * @rmtoll AFRL AFSELy LL_GPIO_GetAFPin_0_7
575 * @param GPIOx GPIO Port
576 * @param Pin This parameter can be one of the following values:
577 * @arg @ref LL_GPIO_PIN_0
578 * @arg @ref LL_GPIO_PIN_1
579 * @arg @ref LL_GPIO_PIN_2
580 * @arg @ref LL_GPIO_PIN_3
581 * @arg @ref LL_GPIO_PIN_4
582 * @arg @ref LL_GPIO_PIN_5
583 * @arg @ref LL_GPIO_PIN_6
584 * @arg @ref LL_GPIO_PIN_7
585 * @retval Returned value can be one of the following values:
586 * @arg @ref LL_GPIO_AF_0
587 * @arg @ref LL_GPIO_AF_1
588 * @arg @ref LL_GPIO_AF_2
589 * @arg @ref LL_GPIO_AF_3
590 * @arg @ref LL_GPIO_AF_4
591 * @arg @ref LL_GPIO_AF_5
592 * @arg @ref LL_GPIO_AF_6
593 * @arg @ref LL_GPIO_AF_7
594 * @arg @ref LL_GPIO_AF_8
595 * @arg @ref LL_GPIO_AF_9
596 * @arg @ref LL_GPIO_AF_10
597 * @arg @ref LL_GPIO_AF_11
598 * @arg @ref LL_GPIO_AF_12
599 * @arg @ref LL_GPIO_AF_13
600 * @arg @ref LL_GPIO_AF_14
601 * @arg @ref LL_GPIO_AF_15
602 */
LL_GPIO_GetAFPin_0_7(GPIO_TypeDef * GPIOx,uint32_t Pin)603 __STATIC_INLINE uint32_t LL_GPIO_GetAFPin_0_7(GPIO_TypeDef *GPIOx, uint32_t Pin)
604 {
605 return (uint32_t)(READ_BIT(GPIOx->AFR[0],
606 (GPIO_AFRL_AFSEL0 << (POSITION_VAL(Pin) * 4U))) >> (POSITION_VAL(Pin) * 4U));
607 }
608
609 /**
610 * @brief Configure gpio alternate function of a dedicated pin from 8 to 15 for a dedicated port.
611 * @note Possible values are from AF0 to AF15 depending on target.
612 * @note Warning: only one pin can be passed as parameter.
613 * @rmtoll AFRH AFSELy LL_GPIO_SetAFPin_8_15
614 * @param GPIOx GPIO Port
615 * @param Pin This parameter can be one of the following values:
616 * @arg @ref LL_GPIO_PIN_8
617 * @arg @ref LL_GPIO_PIN_9
618 * @arg @ref LL_GPIO_PIN_10
619 * @arg @ref LL_GPIO_PIN_11
620 * @arg @ref LL_GPIO_PIN_12
621 * @arg @ref LL_GPIO_PIN_13
622 * @arg @ref LL_GPIO_PIN_14
623 * @arg @ref LL_GPIO_PIN_15
624 * @param Alternate This parameter can be one of the following values:
625 * @arg @ref LL_GPIO_AF_0
626 * @arg @ref LL_GPIO_AF_1
627 * @arg @ref LL_GPIO_AF_2
628 * @arg @ref LL_GPIO_AF_3
629 * @arg @ref LL_GPIO_AF_4
630 * @arg @ref LL_GPIO_AF_5
631 * @arg @ref LL_GPIO_AF_6
632 * @arg @ref LL_GPIO_AF_7
633 * @arg @ref LL_GPIO_AF_8
634 * @arg @ref LL_GPIO_AF_9
635 * @arg @ref LL_GPIO_AF_10
636 * @arg @ref LL_GPIO_AF_11
637 * @arg @ref LL_GPIO_AF_12
638 * @arg @ref LL_GPIO_AF_13
639 * @arg @ref LL_GPIO_AF_14
640 * @arg @ref LL_GPIO_AF_15
641 * @retval None
642 */
LL_GPIO_SetAFPin_8_15(GPIO_TypeDef * GPIOx,uint32_t Pin,uint32_t Alternate)643 __STATIC_INLINE void LL_GPIO_SetAFPin_8_15(GPIO_TypeDef *GPIOx, uint32_t Pin, uint32_t Alternate)
644 {
645 MODIFY_REG(GPIOx->AFR[1], (GPIO_AFRH_AFSEL8 << (POSITION_VAL(Pin >> 8U) * 4U)),
646 (Alternate << (POSITION_VAL(Pin >> 8U) * 4U)));
647 }
648
649 /**
650 * @brief Return gpio alternate function of a dedicated pin from 8 to 15 for a dedicated port.
651 * @note Possible values are from AF0 to AF15 depending on target.
652 * @rmtoll AFRH AFSELy LL_GPIO_GetAFPin_8_15
653 * @param GPIOx GPIO Port
654 * @param Pin This parameter can be one of the following values:
655 * @arg @ref LL_GPIO_PIN_8
656 * @arg @ref LL_GPIO_PIN_9
657 * @arg @ref LL_GPIO_PIN_10
658 * @arg @ref LL_GPIO_PIN_11
659 * @arg @ref LL_GPIO_PIN_12
660 * @arg @ref LL_GPIO_PIN_13
661 * @arg @ref LL_GPIO_PIN_14
662 * @arg @ref LL_GPIO_PIN_15
663 * @retval Returned value can be one of the following values:
664 * @arg @ref LL_GPIO_AF_0
665 * @arg @ref LL_GPIO_AF_1
666 * @arg @ref LL_GPIO_AF_2
667 * @arg @ref LL_GPIO_AF_3
668 * @arg @ref LL_GPIO_AF_4
669 * @arg @ref LL_GPIO_AF_5
670 * @arg @ref LL_GPIO_AF_6
671 * @arg @ref LL_GPIO_AF_7
672 * @arg @ref LL_GPIO_AF_8
673 * @arg @ref LL_GPIO_AF_9
674 * @arg @ref LL_GPIO_AF_10
675 * @arg @ref LL_GPIO_AF_11
676 * @arg @ref LL_GPIO_AF_12
677 * @arg @ref LL_GPIO_AF_13
678 * @arg @ref LL_GPIO_AF_14
679 * @arg @ref LL_GPIO_AF_15
680 */
LL_GPIO_GetAFPin_8_15(GPIO_TypeDef * GPIOx,uint32_t Pin)681 __STATIC_INLINE uint32_t LL_GPIO_GetAFPin_8_15(GPIO_TypeDef *GPIOx, uint32_t Pin)
682 {
683 return (uint32_t)(READ_BIT(GPIOx->AFR[1],
684 (GPIO_AFRH_AFSEL8 << (POSITION_VAL(Pin >> 8U) * 4U))) >> (POSITION_VAL(Pin >> 8U) * 4U));
685 }
686
687 /**
688 * @brief Lock configuration of several pins for a dedicated port.
689 * @note When the lock sequence has been applied on a port bit, the
690 * value of this port bit can no longer be modified until the
691 * next reset.
692 * @note Each lock bit freezes a specific configuration register
693 * (control and alternate function registers).
694 * @rmtoll LCKR LCKK LL_GPIO_LockPin
695 * @param GPIOx GPIO Port
696 * @param PinMask This parameter can be a combination of the following values:
697 * @arg @ref LL_GPIO_PIN_0
698 * @arg @ref LL_GPIO_PIN_1
699 * @arg @ref LL_GPIO_PIN_2
700 * @arg @ref LL_GPIO_PIN_3
701 * @arg @ref LL_GPIO_PIN_4
702 * @arg @ref LL_GPIO_PIN_5
703 * @arg @ref LL_GPIO_PIN_6
704 * @arg @ref LL_GPIO_PIN_7
705 * @arg @ref LL_GPIO_PIN_8
706 * @arg @ref LL_GPIO_PIN_9
707 * @arg @ref LL_GPIO_PIN_10
708 * @arg @ref LL_GPIO_PIN_11
709 * @arg @ref LL_GPIO_PIN_12
710 * @arg @ref LL_GPIO_PIN_13
711 * @arg @ref LL_GPIO_PIN_14
712 * @arg @ref LL_GPIO_PIN_15
713 * @arg @ref LL_GPIO_PIN_ALL
714 * @retval None
715 */
LL_GPIO_LockPin(GPIO_TypeDef * GPIOx,uint32_t PinMask)716 __STATIC_INLINE void LL_GPIO_LockPin(GPIO_TypeDef *GPIOx, uint32_t PinMask)
717 {
718 __IO uint32_t temp;
719 WRITE_REG(GPIOx->LCKR, GPIO_LCKR_LCKK | PinMask);
720 WRITE_REG(GPIOx->LCKR, PinMask);
721 WRITE_REG(GPIOx->LCKR, GPIO_LCKR_LCKK | PinMask);
722 /* Read LCKK register. This read is mandatory to complete key lock sequence */
723 temp = READ_REG(GPIOx->LCKR);
724 (void) temp;
725 }
726
727 /**
728 * @brief Return 1 if all pins passed as parameter, of a dedicated port, are locked. else Return 0.
729 * @rmtoll LCKR LCKy LL_GPIO_IsPinLocked
730 * @param GPIOx GPIO Port
731 * @param PinMask This parameter can be a combination of the following values:
732 * @arg @ref LL_GPIO_PIN_0
733 * @arg @ref LL_GPIO_PIN_1
734 * @arg @ref LL_GPIO_PIN_2
735 * @arg @ref LL_GPIO_PIN_3
736 * @arg @ref LL_GPIO_PIN_4
737 * @arg @ref LL_GPIO_PIN_5
738 * @arg @ref LL_GPIO_PIN_6
739 * @arg @ref LL_GPIO_PIN_7
740 * @arg @ref LL_GPIO_PIN_8
741 * @arg @ref LL_GPIO_PIN_9
742 * @arg @ref LL_GPIO_PIN_10
743 * @arg @ref LL_GPIO_PIN_11
744 * @arg @ref LL_GPIO_PIN_12
745 * @arg @ref LL_GPIO_PIN_13
746 * @arg @ref LL_GPIO_PIN_14
747 * @arg @ref LL_GPIO_PIN_15
748 * @arg @ref LL_GPIO_PIN_ALL
749 * @retval State of bit (1 or 0).
750 */
LL_GPIO_IsPinLocked(GPIO_TypeDef * GPIOx,uint32_t PinMask)751 __STATIC_INLINE uint32_t LL_GPIO_IsPinLocked(GPIO_TypeDef *GPIOx, uint32_t PinMask)
752 {
753 return ((READ_BIT(GPIOx->LCKR, PinMask) == (PinMask)) ? 1UL : 0UL);
754 }
755
756 /**
757 * @brief Return 1 if one of the pin of a dedicated port is locked. else return 0.
758 * @rmtoll LCKR LCKK LL_GPIO_IsAnyPinLocked
759 * @param GPIOx GPIO Port
760 * @retval State of bit (1 or 0).
761 */
LL_GPIO_IsAnyPinLocked(GPIO_TypeDef * GPIOx)762 __STATIC_INLINE uint32_t LL_GPIO_IsAnyPinLocked(GPIO_TypeDef *GPIOx)
763 {
764 return ((READ_BIT(GPIOx->LCKR, GPIO_LCKR_LCKK) == (GPIO_LCKR_LCKK)) ? 1UL : 0UL);
765 }
766
767 /**
768 * @}
769 */
770
771 /** @defgroup GPIO_LL_EF_Data_Access Data Access
772 * @{
773 */
774
775 /**
776 * @brief Return full input data register value for a dedicated port.
777 * @rmtoll IDR IDy LL_GPIO_ReadInputPort
778 * @param GPIOx GPIO Port
779 * @retval Input data register value of port
780 */
LL_GPIO_ReadInputPort(GPIO_TypeDef * GPIOx)781 __STATIC_INLINE uint32_t LL_GPIO_ReadInputPort(GPIO_TypeDef *GPIOx)
782 {
783 return (uint32_t)(READ_REG(GPIOx->IDR));
784 }
785
786 /**
787 * @brief Return if input data level for several pins of dedicated port is high or low.
788 * @rmtoll IDR IDy LL_GPIO_IsInputPinSet
789 * @param GPIOx GPIO Port
790 * @param PinMask This parameter can be a combination of the following values:
791 * @arg @ref LL_GPIO_PIN_0
792 * @arg @ref LL_GPIO_PIN_1
793 * @arg @ref LL_GPIO_PIN_2
794 * @arg @ref LL_GPIO_PIN_3
795 * @arg @ref LL_GPIO_PIN_4
796 * @arg @ref LL_GPIO_PIN_5
797 * @arg @ref LL_GPIO_PIN_6
798 * @arg @ref LL_GPIO_PIN_7
799 * @arg @ref LL_GPIO_PIN_8
800 * @arg @ref LL_GPIO_PIN_9
801 * @arg @ref LL_GPIO_PIN_10
802 * @arg @ref LL_GPIO_PIN_11
803 * @arg @ref LL_GPIO_PIN_12
804 * @arg @ref LL_GPIO_PIN_13
805 * @arg @ref LL_GPIO_PIN_14
806 * @arg @ref LL_GPIO_PIN_15
807 * @arg @ref LL_GPIO_PIN_ALL
808 * @retval State of bit (1 or 0).
809 */
LL_GPIO_IsInputPinSet(GPIO_TypeDef * GPIOx,uint32_t PinMask)810 __STATIC_INLINE uint32_t LL_GPIO_IsInputPinSet(GPIO_TypeDef *GPIOx, uint32_t PinMask)
811 {
812 return ((READ_BIT(GPIOx->IDR, PinMask) == (PinMask)) ? 1UL : 0UL);
813 }
814
815 /**
816 * @brief Write output data register for the port.
817 * @rmtoll ODR ODy LL_GPIO_WriteOutputPort
818 * @param GPIOx GPIO Port
819 * @param PortValue Level value for each pin of the port
820 * @retval None
821 */
LL_GPIO_WriteOutputPort(GPIO_TypeDef * GPIOx,uint32_t PortValue)822 __STATIC_INLINE void LL_GPIO_WriteOutputPort(GPIO_TypeDef *GPIOx, uint32_t PortValue)
823 {
824 WRITE_REG(GPIOx->ODR, PortValue);
825 }
826
827 /**
828 * @brief Return full output data register value for a dedicated port.
829 * @rmtoll ODR ODy LL_GPIO_ReadOutputPort
830 * @param GPIOx GPIO Port
831 * @retval Output data register value of port
832 */
LL_GPIO_ReadOutputPort(GPIO_TypeDef * GPIOx)833 __STATIC_INLINE uint32_t LL_GPIO_ReadOutputPort(GPIO_TypeDef *GPIOx)
834 {
835 return (uint32_t)(READ_REG(GPIOx->ODR));
836 }
837
838 /**
839 * @brief Return if input data level for several pins of dedicated port is high or low.
840 * @rmtoll ODR ODy LL_GPIO_IsOutputPinSet
841 * @param GPIOx GPIO Port
842 * @param PinMask This parameter can be a combination of the following values:
843 * @arg @ref LL_GPIO_PIN_0
844 * @arg @ref LL_GPIO_PIN_1
845 * @arg @ref LL_GPIO_PIN_2
846 * @arg @ref LL_GPIO_PIN_3
847 * @arg @ref LL_GPIO_PIN_4
848 * @arg @ref LL_GPIO_PIN_5
849 * @arg @ref LL_GPIO_PIN_6
850 * @arg @ref LL_GPIO_PIN_7
851 * @arg @ref LL_GPIO_PIN_8
852 * @arg @ref LL_GPIO_PIN_9
853 * @arg @ref LL_GPIO_PIN_10
854 * @arg @ref LL_GPIO_PIN_11
855 * @arg @ref LL_GPIO_PIN_12
856 * @arg @ref LL_GPIO_PIN_13
857 * @arg @ref LL_GPIO_PIN_14
858 * @arg @ref LL_GPIO_PIN_15
859 * @arg @ref LL_GPIO_PIN_ALL
860 * @retval State of bit (1 or 0).
861 */
LL_GPIO_IsOutputPinSet(GPIO_TypeDef * GPIOx,uint32_t PinMask)862 __STATIC_INLINE uint32_t LL_GPIO_IsOutputPinSet(GPIO_TypeDef *GPIOx, uint32_t PinMask)
863 {
864 return ((READ_BIT(GPIOx->ODR, PinMask) == (PinMask)) ? 1UL : 0UL);
865 }
866
867 /**
868 * @brief Set several pins to high level on dedicated gpio port.
869 * @rmtoll BSRR BSy LL_GPIO_SetOutputPin
870 * @param GPIOx GPIO Port
871 * @param PinMask This parameter can be a combination of the following values:
872 * @arg @ref LL_GPIO_PIN_0
873 * @arg @ref LL_GPIO_PIN_1
874 * @arg @ref LL_GPIO_PIN_2
875 * @arg @ref LL_GPIO_PIN_3
876 * @arg @ref LL_GPIO_PIN_4
877 * @arg @ref LL_GPIO_PIN_5
878 * @arg @ref LL_GPIO_PIN_6
879 * @arg @ref LL_GPIO_PIN_7
880 * @arg @ref LL_GPIO_PIN_8
881 * @arg @ref LL_GPIO_PIN_9
882 * @arg @ref LL_GPIO_PIN_10
883 * @arg @ref LL_GPIO_PIN_11
884 * @arg @ref LL_GPIO_PIN_12
885 * @arg @ref LL_GPIO_PIN_13
886 * @arg @ref LL_GPIO_PIN_14
887 * @arg @ref LL_GPIO_PIN_15
888 * @arg @ref LL_GPIO_PIN_ALL
889 * @retval None
890 */
LL_GPIO_SetOutputPin(GPIO_TypeDef * GPIOx,uint32_t PinMask)891 __STATIC_INLINE void LL_GPIO_SetOutputPin(GPIO_TypeDef *GPIOx, uint32_t PinMask)
892 {
893 WRITE_REG(GPIOx->BSRR, PinMask);
894 }
895
896 /**
897 * @brief Set several pins to low level on dedicated gpio port.
898 * @rmtoll BRR BRy LL_GPIO_ResetOutputPin
899 * @param GPIOx GPIO Port
900 * @param PinMask This parameter can be a combination of the following values:
901 * @arg @ref LL_GPIO_PIN_0
902 * @arg @ref LL_GPIO_PIN_1
903 * @arg @ref LL_GPIO_PIN_2
904 * @arg @ref LL_GPIO_PIN_3
905 * @arg @ref LL_GPIO_PIN_4
906 * @arg @ref LL_GPIO_PIN_5
907 * @arg @ref LL_GPIO_PIN_6
908 * @arg @ref LL_GPIO_PIN_7
909 * @arg @ref LL_GPIO_PIN_8
910 * @arg @ref LL_GPIO_PIN_9
911 * @arg @ref LL_GPIO_PIN_10
912 * @arg @ref LL_GPIO_PIN_11
913 * @arg @ref LL_GPIO_PIN_12
914 * @arg @ref LL_GPIO_PIN_13
915 * @arg @ref LL_GPIO_PIN_14
916 * @arg @ref LL_GPIO_PIN_15
917 * @arg @ref LL_GPIO_PIN_ALL
918 * @retval None
919 */
LL_GPIO_ResetOutputPin(GPIO_TypeDef * GPIOx,uint32_t PinMask)920 __STATIC_INLINE void LL_GPIO_ResetOutputPin(GPIO_TypeDef *GPIOx, uint32_t PinMask)
921 {
922 WRITE_REG(GPIOx->BRR, PinMask);
923 }
924
925 /**
926 * @brief Toggle data value for several pin of dedicated port.
927 * @rmtoll ODR ODy LL_GPIO_TogglePin
928 * @param GPIOx GPIO Port
929 * @param PinMask This parameter can be a combination of the following values:
930 * @arg @ref LL_GPIO_PIN_0
931 * @arg @ref LL_GPIO_PIN_1
932 * @arg @ref LL_GPIO_PIN_2
933 * @arg @ref LL_GPIO_PIN_3
934 * @arg @ref LL_GPIO_PIN_4
935 * @arg @ref LL_GPIO_PIN_5
936 * @arg @ref LL_GPIO_PIN_6
937 * @arg @ref LL_GPIO_PIN_7
938 * @arg @ref LL_GPIO_PIN_8
939 * @arg @ref LL_GPIO_PIN_9
940 * @arg @ref LL_GPIO_PIN_10
941 * @arg @ref LL_GPIO_PIN_11
942 * @arg @ref LL_GPIO_PIN_12
943 * @arg @ref LL_GPIO_PIN_13
944 * @arg @ref LL_GPIO_PIN_14
945 * @arg @ref LL_GPIO_PIN_15
946 * @arg @ref LL_GPIO_PIN_ALL
947 * @retval None
948 */
LL_GPIO_TogglePin(GPIO_TypeDef * GPIOx,uint32_t PinMask)949 __STATIC_INLINE void LL_GPIO_TogglePin(GPIO_TypeDef *GPIOx, uint32_t PinMask)
950 {
951 uint32_t odr = READ_REG(GPIOx->ODR);
952 WRITE_REG(GPIOx->BSRR, ((odr & PinMask) << 16u) | (~odr & PinMask));
953 }
954
955 /**
956 * @brief Enable speed optimization for several pin of dedicated port.
957 * @note Not all I/Os support the HSLV mode. Refer to the I/O structure in the corresponding
958 * datasheet for the list of I/Os supporting this feature. Other I/Os HSLV configuration must
959 * be kept at reset value.
960 * @note It must be used only if the I/O supply voltage is below 2.7 V.
961 * @rmtoll HSLVR HSLVy LL_GPIO_EnableHighSPeedLowVoltage
962 * @param GPIOx GPIO Port
963 * @param PinMask This parameter can be a combination of the following values:
964 * @arg @ref LL_GPIO_PIN_0
965 * @arg @ref LL_GPIO_PIN_1
966 * @arg @ref LL_GPIO_PIN_2
967 * @arg @ref LL_GPIO_PIN_3
968 * @arg @ref LL_GPIO_PIN_4
969 * @arg @ref LL_GPIO_PIN_5
970 * @arg @ref LL_GPIO_PIN_6
971 * @arg @ref LL_GPIO_PIN_8
972 * @arg @ref LL_GPIO_PIN_9
973 * @arg @ref LL_GPIO_PIN_10
974 * @arg @ref LL_GPIO_PIN_11
975 * @arg @ref LL_GPIO_PIN_12
976 * @arg @ref LL_GPIO_PIN_13
977 * @arg @ref LL_GPIO_PIN_14
978 * @arg @ref LL_GPIO_PIN_15
979 * @retval None
980 */
LL_GPIO_EnableHighSPeedLowVoltage(GPIO_TypeDef * GPIOx,uint32_t PinMask)981 __STATIC_INLINE void LL_GPIO_EnableHighSPeedLowVoltage(GPIO_TypeDef *GPIOx, uint32_t PinMask)
982 {
983 SET_BIT(GPIOx->HSLVR, PinMask);
984 }
985
986
987 /**
988 * @brief Disable speed optimization for several pin of dedicated port.
989 * @note Not all I/Os support the HSLV mode. Refer to the I/O structure in the corresponding
990 * datasheet for the list of I/Os supporting this feature. Other I/Os HSLV configuration must
991 * be kept at reset value.
992 * @note It must be used only if the I/O supply voltage is below 2.7 V.
993 * @rmtoll HSLVR HSLVy LL_GPIO_DisableHighSPeedLowVoltage
994 * @param GPIOx GPIO Port
995 * @param PinMask This parameter can be a combination of the following values:
996 * @arg @ref LL_GPIO_PIN_0
997 * @arg @ref LL_GPIO_PIN_1
998 * @arg @ref LL_GPIO_PIN_2
999 * @arg @ref LL_GPIO_PIN_3
1000 * @arg @ref LL_GPIO_PIN_4
1001 * @arg @ref LL_GPIO_PIN_5
1002 * @arg @ref LL_GPIO_PIN_6
1003 * @arg @ref LL_GPIO_PIN_8
1004 * @arg @ref LL_GPIO_PIN_9
1005 * @arg @ref LL_GPIO_PIN_10
1006 * @arg @ref LL_GPIO_PIN_11
1007 * @arg @ref LL_GPIO_PIN_12
1008 * @arg @ref LL_GPIO_PIN_13
1009 * @arg @ref LL_GPIO_PIN_14
1010 * @arg @ref LL_GPIO_PIN_15
1011 * @retval None
1012 */
LL_GPIO_DisableHighSPeedLowVoltage(GPIO_TypeDef * GPIOx,uint32_t PinMask)1013 __STATIC_INLINE void LL_GPIO_DisableHighSPeedLowVoltage(GPIO_TypeDef *GPIOx, uint32_t PinMask)
1014 {
1015 CLEAR_BIT(GPIOx->HSLVR, PinMask);
1016 }
1017
1018 /**
1019 * @brief Return if speed optimization for several pin of dedicated port is enabled or not.
1020 * @note Not all I/Os support the HSLV mode. Refer to the I/O structure in the corresponding
1021 * datasheet for the list of I/Os supporting this feature. Other I/Os HSLV configuration must
1022 * be kept at reset value.
1023 * @note It must be used only if the I/O supply voltage is below 2.7 V.
1024 * @rmtoll HSLVR HSLVy LL_GPIO_IsEnabledHighSPeedLowVoltage
1025 * @param GPIOx GPIO Port
1026 * @param PinMask This parameter can be a combination of the following values:
1027 * @arg @ref LL_GPIO_PIN_0
1028 * @arg @ref LL_GPIO_PIN_1
1029 * @arg @ref LL_GPIO_PIN_2
1030 * @arg @ref LL_GPIO_PIN_3
1031 * @arg @ref LL_GPIO_PIN_4
1032 * @arg @ref LL_GPIO_PIN_5
1033 * @arg @ref LL_GPIO_PIN_6
1034 * @arg @ref LL_GPIO_PIN_8
1035 * @arg @ref LL_GPIO_PIN_9
1036 * @arg @ref LL_GPIO_PIN_10
1037 * @arg @ref LL_GPIO_PIN_11
1038 * @arg @ref LL_GPIO_PIN_12
1039 * @arg @ref LL_GPIO_PIN_13
1040 * @arg @ref LL_GPIO_PIN_14
1041 * @arg @ref LL_GPIO_PIN_15
1042 * @retval State of bit (1 or 0).
1043 */
LL_GPIO_IsEnabledHighSPeedLowVoltage(GPIO_TypeDef * GPIOx,uint32_t PinMask)1044 __STATIC_INLINE uint32_t LL_GPIO_IsEnabledHighSPeedLowVoltage(GPIO_TypeDef *GPIOx, uint32_t PinMask)
1045 {
1046 return ((READ_BIT(GPIOx->HSLVR, PinMask) == (PinMask)) ? 1UL : 0UL);
1047 }
1048
1049 #if defined (__ARM_FEATURE_CMSE) && (__ARM_FEATURE_CMSE == 3U)
1050
1051 /**
1052 * @brief Enable secure write only access for several pin of dedicated port.
1053 * @rmtoll SECCFGR SECy LL_GPIO_EnablePinSecure
1054 * @param GPIOx GPIO Port
1055 * @param PinMask This parameter can be a combination of the following values:
1056 * @arg @ref LL_GPIO_PIN_0
1057 * @arg @ref LL_GPIO_PIN_1
1058 * @arg @ref LL_GPIO_PIN_2
1059 * @arg @ref LL_GPIO_PIN_3
1060 * @arg @ref LL_GPIO_PIN_4
1061 * @arg @ref LL_GPIO_PIN_5
1062 * @arg @ref LL_GPIO_PIN_6
1063 * @arg @ref LL_GPIO_PIN_7
1064 * @arg @ref LL_GPIO_PIN_8
1065 * @arg @ref LL_GPIO_PIN_9
1066 * @arg @ref LL_GPIO_PIN_10
1067 * @arg @ref LL_GPIO_PIN_11
1068 * @arg @ref LL_GPIO_PIN_12
1069 * @arg @ref LL_GPIO_PIN_13
1070 * @arg @ref LL_GPIO_PIN_14
1071 * @arg @ref LL_GPIO_PIN_15
1072 * @arg @ref LL_GPIO_PIN_ALL
1073 * @retval None
1074 */
LL_GPIO_EnablePinSecure(GPIO_TypeDef * GPIOx,uint32_t PinMask)1075 __STATIC_INLINE void LL_GPIO_EnablePinSecure(GPIO_TypeDef *GPIOx, uint32_t PinMask)
1076 {
1077 SET_BIT(GPIOx->SECCFGR, PinMask);
1078 }
1079
1080
1081 /**
1082 * @brief Disable secure write only access for several pin of dedicated port.
1083 * @rmtoll SECCFGR SECy LL_GPIO_DisablePinSecure
1084 * @param GPIOx GPIO Port
1085 * @param PinMask This parameter can be a combination of the following values:
1086 * @arg @ref LL_GPIO_PIN_0
1087 * @arg @ref LL_GPIO_PIN_1
1088 * @arg @ref LL_GPIO_PIN_2
1089 * @arg @ref LL_GPIO_PIN_3
1090 * @arg @ref LL_GPIO_PIN_4
1091 * @arg @ref LL_GPIO_PIN_5
1092 * @arg @ref LL_GPIO_PIN_6
1093 * @arg @ref LL_GPIO_PIN_7
1094 * @arg @ref LL_GPIO_PIN_8
1095 * @arg @ref LL_GPIO_PIN_9
1096 * @arg @ref LL_GPIO_PIN_10
1097 * @arg @ref LL_GPIO_PIN_11
1098 * @arg @ref LL_GPIO_PIN_12
1099 * @arg @ref LL_GPIO_PIN_13
1100 * @arg @ref LL_GPIO_PIN_14
1101 * @arg @ref LL_GPIO_PIN_15
1102 * @arg @ref LL_GPIO_PIN_ALL
1103 * @retval None
1104 */
LL_GPIO_DisablePinSecure(GPIO_TypeDef * GPIOx,uint32_t PinMask)1105 __STATIC_INLINE void LL_GPIO_DisablePinSecure(GPIO_TypeDef *GPIOx, uint32_t PinMask)
1106 {
1107 CLEAR_BIT(GPIOx->SECCFGR, PinMask);
1108 }
1109
1110 #endif /* __ARM_FEATURE_CMSE */
1111
1112 /**
1113 * @brief Return if secure write only access for several pin of dedicated port is enabled or not.
1114 * @rmtoll SECCFGR SECy LL_GPIO_IsEnabledPinSecure
1115 * @param GPIOx GPIO Port
1116 * @param PinMask This parameter can be a combination of the following values:
1117 * @arg @ref LL_GPIO_PIN_0
1118 * @arg @ref LL_GPIO_PIN_1
1119 * @arg @ref LL_GPIO_PIN_2
1120 * @arg @ref LL_GPIO_PIN_3
1121 * @arg @ref LL_GPIO_PIN_4
1122 * @arg @ref LL_GPIO_PIN_5
1123 * @arg @ref LL_GPIO_PIN_6
1124 * @arg @ref LL_GPIO_PIN_7
1125 * @arg @ref LL_GPIO_PIN_8
1126 * @arg @ref LL_GPIO_PIN_9
1127 * @arg @ref LL_GPIO_PIN_10
1128 * @arg @ref LL_GPIO_PIN_11
1129 * @arg @ref LL_GPIO_PIN_12
1130 * @arg @ref LL_GPIO_PIN_13
1131 * @arg @ref LL_GPIO_PIN_14
1132 * @arg @ref LL_GPIO_PIN_15
1133 * @arg @ref LL_GPIO_PIN_ALL
1134 * @retval State of bit (1 or 0).
1135 */
LL_GPIO_IsEnabledPinSecure(GPIO_TypeDef * GPIOx,uint32_t PinMask)1136 __STATIC_INLINE uint32_t LL_GPIO_IsEnabledPinSecure(GPIO_TypeDef *GPIOx, uint32_t PinMask)
1137 {
1138 return ((READ_BIT(GPIOx->SECCFGR, PinMask) == (PinMask)) ? 1UL : 0UL);
1139 }
1140
1141
1142 /**
1143 * @}
1144 */
1145
1146 #if defined(USE_FULL_LL_DRIVER)
1147 /** @defgroup GPIO_LL_EF_Init Initialization and de-initialization functions
1148 * @{
1149 */
1150
1151 ErrorStatus LL_GPIO_DeInit(GPIO_TypeDef *GPIOx);
1152 ErrorStatus LL_GPIO_Init(GPIO_TypeDef *GPIOx, LL_GPIO_InitTypeDef *GPIO_InitStruct);
1153 void LL_GPIO_StructInit(LL_GPIO_InitTypeDef *GPIO_InitStruct);
1154
1155 /**
1156 * @}
1157 */
1158 #endif /* USE_FULL_LL_DRIVER */
1159
1160 /**
1161 * @}
1162 */
1163
1164 /**
1165 * @}
1166 */
1167
1168 #endif /* defined (GPIOA) || defined (GPIOB) || defined (GPIOC) || defined (GPIOD) || defined (GPIOE) || \
1169 defined (GPIOF) || defined (GPIOG) || defined (GPIOH) || defined (GPIOI) */
1170 /**
1171 * @}
1172 */
1173
1174 #ifdef __cplusplus
1175 }
1176 #endif
1177
1178 #endif /* STM32H5xx_LL_GPIO_H */
1179