stm32g0xx_ll_gpio.h 36 KB

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