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