stm32f4xx_gpio.h 28 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584
  1. /**
  2. ******************************************************************************
  3. * @file stm32f4xx_gpio.h
  4. * @author MCD Application Team
  5. * @version V1.8.1
  6. * @date 27-January-2022
  7. * @brief This file contains all the functions prototypes for the GPIO firmware
  8. * library.
  9. ******************************************************************************
  10. * @attention
  11. *
  12. * Copyright (c) 2016 STMicroelectronics.
  13. * All rights reserved.
  14. *
  15. * This software is licensed under terms that can be found in the LICENSE file
  16. * in the root directory of this software component.
  17. * If no LICENSE file comes with this software, it is provided AS-IS.
  18. *
  19. ******************************************************************************
  20. */
  21. /* Define to prevent recursive inclusion -------------------------------------*/
  22. #ifndef __STM32F4xx_GPIO_H
  23. #define __STM32F4xx_GPIO_H
  24. #ifdef __cplusplus
  25. extern "C" {
  26. #endif
  27. /* Includes ------------------------------------------------------------------*/
  28. #include "stm32f4xx.h"
  29. /** @addtogroup STM32F4xx_StdPeriph_Driver
  30. * @{
  31. */
  32. /** @addtogroup GPIO
  33. * @{
  34. */
  35. /* Exported types ------------------------------------------------------------*/
  36. #define IS_GPIO_ALL_PERIPH(PERIPH) (((PERIPH) == GPIOA) || \
  37. ((PERIPH) == GPIOB) || \
  38. ((PERIPH) == GPIOC) || \
  39. ((PERIPH) == GPIOD) || \
  40. ((PERIPH) == GPIOE) || \
  41. ((PERIPH) == GPIOF) || \
  42. ((PERIPH) == GPIOG) || \
  43. ((PERIPH) == GPIOH) || \
  44. ((PERIPH) == GPIOI) || \
  45. ((PERIPH) == GPIOJ) || \
  46. ((PERIPH) == GPIOK))
  47. /**
  48. * @brief GPIO Configuration Mode enumeration
  49. */
  50. typedef enum
  51. {
  52. GPIO_Mode_IN = 0x00, /*!< GPIO Input Mode */
  53. GPIO_Mode_OUT = 0x01, /*!< GPIO Output Mode */
  54. GPIO_Mode_AF = 0x02, /*!< GPIO Alternate function Mode */
  55. GPIO_Mode_AN = 0x03 /*!< GPIO Analog Mode */
  56. }GPIOMode_TypeDef;
  57. #define IS_GPIO_MODE(MODE) (((MODE) == GPIO_Mode_IN) || ((MODE) == GPIO_Mode_OUT) || \
  58. ((MODE) == GPIO_Mode_AF)|| ((MODE) == GPIO_Mode_AN))
  59. /**
  60. * @brief GPIO Output type enumeration
  61. */
  62. typedef enum
  63. {
  64. GPIO_OType_PP = 0x00,
  65. GPIO_OType_OD = 0x01
  66. }GPIOOType_TypeDef;
  67. #define IS_GPIO_OTYPE(OTYPE) (((OTYPE) == GPIO_OType_PP) || ((OTYPE) == GPIO_OType_OD))
  68. /**
  69. * @brief GPIO Output Maximum frequency enumeration
  70. */
  71. typedef enum
  72. {
  73. GPIO_Low_Speed = 0x00, /*!< Low speed */
  74. GPIO_Medium_Speed = 0x01, /*!< Medium speed */
  75. GPIO_Fast_Speed = 0x02, /*!< Fast speed */
  76. GPIO_High_Speed = 0x03 /*!< High speed */
  77. }GPIOSpeed_TypeDef;
  78. /* Add legacy definition */
  79. #define GPIO_Speed_2MHz GPIO_Low_Speed
  80. #define GPIO_Speed_25MHz GPIO_Medium_Speed
  81. #define GPIO_Speed_50MHz GPIO_Fast_Speed
  82. #define GPIO_Speed_100MHz GPIO_High_Speed
  83. #define IS_GPIO_SPEED(SPEED) (((SPEED) == GPIO_Low_Speed) || ((SPEED) == GPIO_Medium_Speed) || \
  84. ((SPEED) == GPIO_Fast_Speed)|| ((SPEED) == GPIO_High_Speed))
  85. /**
  86. * @brief GPIO Configuration PullUp PullDown enumeration
  87. */
  88. typedef enum
  89. {
  90. GPIO_PuPd_NOPULL = 0x00,
  91. GPIO_PuPd_UP = 0x01,
  92. GPIO_PuPd_DOWN = 0x02
  93. }GPIOPuPd_TypeDef;
  94. #define IS_GPIO_PUPD(PUPD) (((PUPD) == GPIO_PuPd_NOPULL) || ((PUPD) == GPIO_PuPd_UP) || \
  95. ((PUPD) == GPIO_PuPd_DOWN))
  96. /**
  97. * @brief GPIO Bit SET and Bit RESET enumeration
  98. */
  99. typedef enum
  100. {
  101. Bit_RESET = 0,
  102. Bit_SET
  103. }BitAction;
  104. #define IS_GPIO_BIT_ACTION(ACTION) (((ACTION) == Bit_RESET) || ((ACTION) == Bit_SET))
  105. /**
  106. * @brief GPIO Init structure definition
  107. */
  108. typedef struct
  109. {
  110. uint32_t GPIO_Pin; /*!< Specifies the GPIO pins to be configured.
  111. This parameter can be any value of @ref GPIO_pins_define */
  112. GPIOMode_TypeDef GPIO_Mode; /*!< Specifies the operating mode for the selected pins.
  113. This parameter can be a value of @ref GPIOMode_TypeDef */
  114. GPIOSpeed_TypeDef GPIO_Speed; /*!< Specifies the speed for the selected pins.
  115. This parameter can be a value of @ref GPIOSpeed_TypeDef */
  116. GPIOOType_TypeDef GPIO_OType; /*!< Specifies the operating output type for the selected pins.
  117. This parameter can be a value of @ref GPIOOType_TypeDef */
  118. GPIOPuPd_TypeDef GPIO_PuPd; /*!< Specifies the operating Pull-up/Pull down for the selected pins.
  119. This parameter can be a value of @ref GPIOPuPd_TypeDef */
  120. }GPIO_InitTypeDef;
  121. /* Exported constants --------------------------------------------------------*/
  122. /** @defgroup GPIO_Exported_Constants
  123. * @{
  124. */
  125. /** @defgroup GPIO_pins_define
  126. * @{
  127. */
  128. #define GPIO_Pin_0 ((uint16_t)0x0001) /* Pin 0 selected */
  129. #define GPIO_Pin_1 ((uint16_t)0x0002) /* Pin 1 selected */
  130. #define GPIO_Pin_2 ((uint16_t)0x0004) /* Pin 2 selected */
  131. #define GPIO_Pin_3 ((uint16_t)0x0008) /* Pin 3 selected */
  132. #define GPIO_Pin_4 ((uint16_t)0x0010) /* Pin 4 selected */
  133. #define GPIO_Pin_5 ((uint16_t)0x0020) /* Pin 5 selected */
  134. #define GPIO_Pin_6 ((uint16_t)0x0040) /* Pin 6 selected */
  135. #define GPIO_Pin_7 ((uint16_t)0x0080) /* Pin 7 selected */
  136. #define GPIO_Pin_8 ((uint16_t)0x0100) /* Pin 8 selected */
  137. #define GPIO_Pin_9 ((uint16_t)0x0200) /* Pin 9 selected */
  138. #define GPIO_Pin_10 ((uint16_t)0x0400) /* Pin 10 selected */
  139. #define GPIO_Pin_11 ((uint16_t)0x0800) /* Pin 11 selected */
  140. #define GPIO_Pin_12 ((uint16_t)0x1000) /* Pin 12 selected */
  141. #define GPIO_Pin_13 ((uint16_t)0x2000) /* Pin 13 selected */
  142. #define GPIO_Pin_14 ((uint16_t)0x4000) /* Pin 14 selected */
  143. #define GPIO_Pin_15 ((uint16_t)0x8000) /* Pin 15 selected */
  144. #define GPIO_Pin_All ((uint16_t)0xFFFF) /* All pins selected */
  145. #define GPIO_PIN_MASK ((uint32_t)0x0000FFFF) /* PIN mask for assert test */
  146. #define IS_GPIO_PIN(PIN) (((PIN) & GPIO_PIN_MASK ) != (uint32_t)0x00)
  147. #define IS_GET_GPIO_PIN(PIN) (((PIN) == GPIO_Pin_0) || \
  148. ((PIN) == GPIO_Pin_1) || \
  149. ((PIN) == GPIO_Pin_2) || \
  150. ((PIN) == GPIO_Pin_3) || \
  151. ((PIN) == GPIO_Pin_4) || \
  152. ((PIN) == GPIO_Pin_5) || \
  153. ((PIN) == GPIO_Pin_6) || \
  154. ((PIN) == GPIO_Pin_7) || \
  155. ((PIN) == GPIO_Pin_8) || \
  156. ((PIN) == GPIO_Pin_9) || \
  157. ((PIN) == GPIO_Pin_10) || \
  158. ((PIN) == GPIO_Pin_11) || \
  159. ((PIN) == GPIO_Pin_12) || \
  160. ((PIN) == GPIO_Pin_13) || \
  161. ((PIN) == GPIO_Pin_14) || \
  162. ((PIN) == GPIO_Pin_15))
  163. /**
  164. * @}
  165. */
  166. /** @defgroup GPIO_Pin_sources
  167. * @{
  168. */
  169. #define GPIO_PinSource0 ((uint8_t)0x00)
  170. #define GPIO_PinSource1 ((uint8_t)0x01)
  171. #define GPIO_PinSource2 ((uint8_t)0x02)
  172. #define GPIO_PinSource3 ((uint8_t)0x03)
  173. #define GPIO_PinSource4 ((uint8_t)0x04)
  174. #define GPIO_PinSource5 ((uint8_t)0x05)
  175. #define GPIO_PinSource6 ((uint8_t)0x06)
  176. #define GPIO_PinSource7 ((uint8_t)0x07)
  177. #define GPIO_PinSource8 ((uint8_t)0x08)
  178. #define GPIO_PinSource9 ((uint8_t)0x09)
  179. #define GPIO_PinSource10 ((uint8_t)0x0A)
  180. #define GPIO_PinSource11 ((uint8_t)0x0B)
  181. #define GPIO_PinSource12 ((uint8_t)0x0C)
  182. #define GPIO_PinSource13 ((uint8_t)0x0D)
  183. #define GPIO_PinSource14 ((uint8_t)0x0E)
  184. #define GPIO_PinSource15 ((uint8_t)0x0F)
  185. #define IS_GPIO_PIN_SOURCE(PINSOURCE) (((PINSOURCE) == GPIO_PinSource0) || \
  186. ((PINSOURCE) == GPIO_PinSource1) || \
  187. ((PINSOURCE) == GPIO_PinSource2) || \
  188. ((PINSOURCE) == GPIO_PinSource3) || \
  189. ((PINSOURCE) == GPIO_PinSource4) || \
  190. ((PINSOURCE) == GPIO_PinSource5) || \
  191. ((PINSOURCE) == GPIO_PinSource6) || \
  192. ((PINSOURCE) == GPIO_PinSource7) || \
  193. ((PINSOURCE) == GPIO_PinSource8) || \
  194. ((PINSOURCE) == GPIO_PinSource9) || \
  195. ((PINSOURCE) == GPIO_PinSource10) || \
  196. ((PINSOURCE) == GPIO_PinSource11) || \
  197. ((PINSOURCE) == GPIO_PinSource12) || \
  198. ((PINSOURCE) == GPIO_PinSource13) || \
  199. ((PINSOURCE) == GPIO_PinSource14) || \
  200. ((PINSOURCE) == GPIO_PinSource15))
  201. /**
  202. * @}
  203. */
  204. /** @defgroup GPIO_Alternat_function_selection_define
  205. * @{
  206. */
  207. /**
  208. * @brief AF 0 selection
  209. */
  210. #define GPIO_AF_RTC_50Hz ((uint8_t)0x00) /* RTC_50Hz Alternate Function mapping */
  211. #define GPIO_AF_MCO ((uint8_t)0x00) /* MCO (MCO1 and MCO2) Alternate Function mapping */
  212. #define GPIO_AF_TAMPER ((uint8_t)0x00) /* TAMPER (TAMPER_1 and TAMPER_2) Alternate Function mapping */
  213. #define GPIO_AF_SWJ ((uint8_t)0x00) /* SWJ (SWD and JTAG) Alternate Function mapping */
  214. #define GPIO_AF_TRACE ((uint8_t)0x00) /* TRACE Alternate Function mapping */
  215. #if defined(STM32F446xx)
  216. #define GPIO_AF0_TIM2 ((uint8_t)0x00) /* TIM2 Alternate Function mapping */
  217. #endif /* STM32F446xx */
  218. /**
  219. * @brief AF 1 selection
  220. */
  221. #define GPIO_AF_TIM1 ((uint8_t)0x01) /* TIM1 Alternate Function mapping */
  222. #define GPIO_AF_TIM2 ((uint8_t)0x01) /* TIM2 Alternate Function mapping */
  223. #if defined(STM32F410xx) || defined(STM32F413_423xx)
  224. #define GPIO_AF_LPTIM ((uint8_t)0x01) /* LPTIM Alternate Function mapping */
  225. #endif /* STM32F410xx || STM32F413_423xx */
  226. /**
  227. * @brief AF 2 selection
  228. */
  229. #define GPIO_AF_TIM3 ((uint8_t)0x02) /* TIM3 Alternate Function mapping */
  230. #define GPIO_AF_TIM4 ((uint8_t)0x02) /* TIM4 Alternate Function mapping */
  231. #define GPIO_AF_TIM5 ((uint8_t)0x02) /* TIM5 Alternate Function mapping */
  232. /**
  233. * @brief AF 3 selection
  234. */
  235. #define GPIO_AF_TIM8 ((uint8_t)0x03) /* TIM8 Alternate Function mapping */
  236. #define GPIO_AF_TIM9 ((uint8_t)0x03) /* TIM9 Alternate Function mapping */
  237. #define GPIO_AF_TIM10 ((uint8_t)0x03) /* TIM10 Alternate Function mapping */
  238. #define GPIO_AF_TIM11 ((uint8_t)0x03) /* TIM11 Alternate Function mapping */
  239. #if defined(STM32F446xx)
  240. #define GPIO_AF3_CEC ((uint8_t)0x03) /* CEC Alternate Function mapping */
  241. #endif /* STM32F446xx */
  242. #if defined(STM32F413_423xx)
  243. #define GPIO_AF3_DFSDM2 ((uint8_t)0x03) /* DFSDM2 Alternate Function mapping */
  244. #endif /* STM32F413_423xx */
  245. /**
  246. * @brief AF 4 selection
  247. */
  248. #define GPIO_AF_I2C1 ((uint8_t)0x04) /* I2C1 Alternate Function mapping */
  249. #define GPIO_AF_I2C2 ((uint8_t)0x04) /* I2C2 Alternate Function mapping */
  250. #define GPIO_AF_I2C3 ((uint8_t)0x04) /* I2C3 Alternate Function mapping */
  251. #if defined(STM32F446xx)
  252. #define GPIO_AF4_CEC ((uint8_t)0x04) /* CEC Alternate Function mapping */
  253. #endif /* STM32F446xx */
  254. #if defined(STM32F410xx) || defined(STM32F412xG) || defined(STM32F413_423xx) || defined(STM32F446xx)
  255. #define GPIO_AF_FMPI2C ((uint8_t)0x04) /* FMPI2C Alternate Function mapping */
  256. #endif /* STM32F410xx || STM32F446xx */
  257. /**
  258. * @brief AF 5 selection
  259. */
  260. #define GPIO_AF_SPI1 ((uint8_t)0x05) /* SPI1/I2S1 Alternate Function mapping */
  261. #define GPIO_AF_SPI2 ((uint8_t)0x05) /* SPI2/I2S2 Alternate Function mapping */
  262. #define GPIO_AF5_SPI3 ((uint8_t)0x05) /* SPI3/I2S3 Alternate Function mapping (Only for STM32F411xE and STM32F413_423xx Devices) */
  263. #define GPIO_AF_SPI4 ((uint8_t)0x05) /* SPI4/I2S4 Alternate Function mapping */
  264. #define GPIO_AF_SPI5 ((uint8_t)0x05) /* SPI5 Alternate Function mapping */
  265. #define GPIO_AF_SPI6 ((uint8_t)0x05) /* SPI6 Alternate Function mapping */
  266. /**
  267. * @brief AF 6 selection
  268. */
  269. #define GPIO_AF_SPI3 ((uint8_t)0x06) /* SPI3/I2S3 Alternate Function mapping */
  270. #define GPIO_AF6_SPI1 ((uint8_t)0x06) /* SPI1 Alternate Function mapping (Only for STM32F410xx Devices) */
  271. #define GPIO_AF6_SPI2 ((uint8_t)0x06) /* SPI2 Alternate Function mapping (Only for STM32F410xx/STM32F411xE Devices) */
  272. #define GPIO_AF6_SPI4 ((uint8_t)0x06) /* SPI4 Alternate Function mapping (Only for STM32F411xE Devices) */
  273. #define GPIO_AF6_SPI5 ((uint8_t)0x06) /* SPI5 Alternate Function mapping (Only for STM32F410xx/STM32F411xE Devices) */
  274. #define GPIO_AF_SAI1 ((uint8_t)0x06) /* SAI1 Alternate Function mapping */
  275. #define GPIO_AF_I2S2ext ((uint8_t)0x06) /* I2S2ext_SD Alternate Function mapping (only for STM32F412xG and STM32F413_423xx Devices) */
  276. #if defined(STM32F412xG) || defined(STM32F413_423xx)
  277. #define GPIO_AF6_DFSDM1 ((uint8_t)0x06) /* DFSDM1 Alternate Function mapping */
  278. #endif /* STM32F412xG || STM32F413_423xx */
  279. #if defined(STM32F413_423xx)
  280. #define GPIO_AF6_DFSDM2 ((uint8_t)0x06) /* DFSDM2 Alternate Function mapping */
  281. #endif /* STM32F413_423xx */
  282. /**
  283. * @brief AF 7 selection
  284. */
  285. #define GPIO_AF_USART1 ((uint8_t)0x07) /* USART1 Alternate Function mapping */
  286. #define GPIO_AF_USART2 ((uint8_t)0x07) /* USART2 Alternate Function mapping */
  287. #define GPIO_AF_USART3 ((uint8_t)0x07) /* USART3 Alternate Function mapping */
  288. #define GPIO_AF7_SPI3 ((uint8_t)0x07) /* SPI3/I2S3ext Alternate Function mapping */
  289. #if defined(STM32F413_423xx)
  290. #define GPIO_AF7_DFSDM2 ((uint8_t)0x07) /* DFSDM2 Alternate Function mapping */
  291. #define GPIO_AF7_SAI1 ((uint8_t)0x07) /* SAI1 Alternate Function mapping */
  292. #endif /* STM32F413_423xx */
  293. /**
  294. * @brief AF 7 selection Legacy
  295. */
  296. #define GPIO_AF_I2S3ext GPIO_AF7_SPI3
  297. /**
  298. * @brief AF 8 selection
  299. */
  300. #define GPIO_AF_UART4 ((uint8_t)0x08) /* UART4 Alternate Function mapping */
  301. #define GPIO_AF_UART5 ((uint8_t)0x08) /* UART5 Alternate Function mapping */
  302. #define GPIO_AF_USART6 ((uint8_t)0x08) /* USART6 Alternate Function mapping */
  303. #define GPIO_AF_UART7 ((uint8_t)0x08) /* UART7 Alternate Function mapping */
  304. #define GPIO_AF_UART8 ((uint8_t)0x08) /* UART8 Alternate Function mapping */
  305. #if defined(STM32F412xG) || defined(STM32F413_423xx)
  306. #define GPIO_AF8_USART3 ((uint8_t)0x08) /* USART3 Alternate Function mapping */
  307. #define GPIO_AF8_DFSDM1 ((uint8_t)0x08) /* DFSDM Alternate Function mapping */
  308. #define GPIO_AF8_CAN1 ((uint8_t)0x08) /* CAN1 Alternate Function mapping */
  309. #endif /* STM32F412xG || STM32F413_423xx */
  310. #if defined(STM32F446xx)
  311. #define GPIO_AF8_SAI2 ((uint8_t)0x08) /* SAI2 Alternate Function mapping */
  312. #define GPIO_AF_SPDIF ((uint8_t)0x08) /* SPDIF Alternate Function mapping */
  313. #endif /* STM32F446xx */
  314. /**
  315. * @brief AF 9 selection
  316. */
  317. #define GPIO_AF_CAN1 ((uint8_t)0x09) /* CAN1 Alternate Function mapping */
  318. #define GPIO_AF_CAN2 ((uint8_t)0x09) /* CAN2 Alternate Function mapping */
  319. #define GPIO_AF_TIM12 ((uint8_t)0x09) /* TIM12 Alternate Function mapping */
  320. #define GPIO_AF_TIM13 ((uint8_t)0x09) /* TIM13 Alternate Function mapping */
  321. #define GPIO_AF_TIM14 ((uint8_t)0x09) /* TIM14 Alternate Function mapping */
  322. #define GPIO_AF9_I2C2 ((uint8_t)0x09) /* I2C2 Alternate Function mapping (Only for STM32F401xx/STM32F410xx/STM32F411xE/STM32F412xG/STM32F413_423xx Devices) */
  323. #define GPIO_AF9_I2C3 ((uint8_t)0x09) /* I2C3 Alternate Function mapping (Only for STM32F401xx/STM32F411xE/STM32F412xG and STM32F413_423xx Devices) */
  324. #if defined(STM32F446xx)
  325. #define GPIO_AF9_SAI2 ((uint8_t)0x09) /* SAI2 Alternate Function mapping */
  326. #endif /* STM32F446xx */
  327. #define GPIO_AF9_LTDC ((uint8_t)0x09) /* LTDC Alternate Function mapping */
  328. #if defined(STM32F412xG) || defined(STM32F413_423xx) || defined(STM32F446xx) || defined(STM32F469_479xx)
  329. #define GPIO_AF9_QUADSPI ((uint8_t)0x09) /* QuadSPI Alternate Function mapping */
  330. #endif /* STM32F412xG || STM32F413_423xx || STM32F446xx || STM32F469_479xx */
  331. #if defined(STM32F410xx) || defined(STM32F412xG) || defined(STM32F413_423xx)
  332. #define GPIO_AF9_FMPI2C ((uint8_t)0x09) /* FMPI2C Alternate Function mapping (Only for STM32F410xx Devices) */
  333. #endif /* STM32F410xx || STM32F412xG || STM32F413_423xx */
  334. /**
  335. * @brief AF 10 selection
  336. */
  337. #define GPIO_AF_OTG_FS ((uint8_t)0xA) /* OTG_FS Alternate Function mapping */
  338. #define GPIO_AF_OTG_HS ((uint8_t)0xA) /* OTG_HS Alternate Function mapping */
  339. #if defined(STM32F446xx)
  340. #define GPIO_AF10_SAI2 ((uint8_t)0x0A) /* SAI2 Alternate Function mapping */
  341. #endif /* STM32F446xx */
  342. #if defined(STM32F412xG) || defined(STM32F413_423xx) || defined(STM32F446xx) || defined(STM32F469_479xx)
  343. #define GPIO_AF10_QUADSPI ((uint8_t)0x0A) /* QuadSPI Alternate Function mapping */
  344. #endif /* STM32F412xG || STM32F413_423xx || STM32F446xx || STM32F469_479xx */
  345. #if defined(STM32F412xG) || defined(STM32F413_423xx)
  346. #define GPIO_AF10_FMC ((uint8_t)0xA) /* FMC Alternate Function mapping */
  347. #define GPIO_AF10_DFSDM1 ((uint8_t)0xA) /* DFSDM Alternate Function mapping */
  348. #endif /* STM32F412xG || STM32F413_423xx */
  349. #if defined(STM32F413_423xx)
  350. #define GPIO_AF10_DFSDM2 ((uint8_t)0x0A) /* DFSDM2 Alternate Function mapping */
  351. #define GPIO_AF10_SAI1 ((uint8_t)0x0A) /* SAI1 Alternate Function mapping */
  352. #endif /* STM32F413_423xx */
  353. /**
  354. * @brief AF 11 selection
  355. */
  356. #define GPIO_AF_ETH ((uint8_t)0x0B) /* ETHERNET Alternate Function mapping */
  357. #if defined(STM32F413_423xx)
  358. #define GPIO_AF11_UART4 ((uint8_t)0x0B) /* UART4 Alternate Function mapping */
  359. #define GPIO_AF11_UART5 ((uint8_t)0x0B) /* UART5 Alternate Function mapping */
  360. #define GPIO_AF11_UART9 ((uint8_t)0x0B) /* UART9 Alternate Function mapping */
  361. #define GPIO_AF11_UART10 ((uint8_t)0x0B) /* UART10 Alternate Function mapping */
  362. #define GPIO_AF11_CAN3 ((uint8_t)0x0B) /* CAN3 Alternate Function mapping */
  363. #endif /* STM32F413_423xx */
  364. /**
  365. * @brief AF 12 selection
  366. */
  367. #if defined(STM32F40_41xxx) || defined(STM32F412xG) || defined(STM32F413_423xx)
  368. #define GPIO_AF_FSMC ((uint8_t)0xC) /* FSMC Alternate Function mapping */
  369. #endif /* STM32F40_41xxx || STM32F412xG || STM32F413_423xx */
  370. #if defined(STM32F427_437xx) || defined(STM32F429_439xx) || defined(STM32F446xx) || defined(STM32F469_479xx)
  371. #define GPIO_AF_FMC ((uint8_t)0xC) /* FMC Alternate Function mapping */
  372. #endif /* STM32F427_437xx || STM32F429_439xx || STM32F446xx || STM32F469_479xx */
  373. #define GPIO_AF_OTG_HS_FS ((uint8_t)0xC) /* OTG HS configured in FS, Alternate Function mapping */
  374. #define GPIO_AF_SDIO ((uint8_t)0xC) /* SDIO Alternate Function mapping */
  375. /**
  376. * @brief AF 13 selection
  377. */
  378. #define GPIO_AF_DCMI ((uint8_t)0x0D) /* DCMI Alternate Function mapping */
  379. #if defined(STM32F469_479xx)
  380. #define GPIO_AF_DSI ((uint8_t)0x0D) /* DSI Alternate Function mapping */
  381. #endif /* STM32F469_479xx */
  382. /**
  383. * @brief AF 14 selection
  384. */
  385. #define GPIO_AF_LTDC ((uint8_t)0x0E) /* LCD-TFT Alternate Function mapping */
  386. #if defined(STM32F413_423xx)
  387. #define GPIO_AF14_RNG ((uint8_t)0x0E) /* RNG Alternate Function mapping */
  388. #endif /* STM32F413_423xx */
  389. /**
  390. * @brief AF 15 selection
  391. */
  392. #define GPIO_AF_EVENTOUT ((uint8_t)0x0F) /* EVENTOUT Alternate Function mapping */
  393. #if defined(STM32F40_41xxx)
  394. #define IS_GPIO_AF(AF) (((AF) == GPIO_AF_RTC_50Hz) || ((AF) == GPIO_AF_TIM14) || \
  395. ((AF) == GPIO_AF_MCO) || ((AF) == GPIO_AF_TAMPER) || \
  396. ((AF) == GPIO_AF_SWJ) || ((AF) == GPIO_AF_TRACE) || \
  397. ((AF) == GPIO_AF_TIM1) || ((AF) == GPIO_AF_TIM2) || \
  398. ((AF) == GPIO_AF_TIM3) || ((AF) == GPIO_AF_TIM4) || \
  399. ((AF) == GPIO_AF_TIM5) || ((AF) == GPIO_AF_TIM8) || \
  400. ((AF) == GPIO_AF_I2C1) || ((AF) == GPIO_AF_I2C2) || \
  401. ((AF) == GPIO_AF_I2C3) || ((AF) == GPIO_AF_SPI1) || \
  402. ((AF) == GPIO_AF_SPI2) || ((AF) == GPIO_AF_TIM13) || \
  403. ((AF) == GPIO_AF_SPI3) || ((AF) == GPIO_AF_TIM14) || \
  404. ((AF) == GPIO_AF_USART1) || ((AF) == GPIO_AF_USART2) || \
  405. ((AF) == GPIO_AF_USART3) || ((AF) == GPIO_AF_UART4) || \
  406. ((AF) == GPIO_AF_UART5) || ((AF) == GPIO_AF_USART6) || \
  407. ((AF) == GPIO_AF_CAN1) || ((AF) == GPIO_AF_CAN2) || \
  408. ((AF) == GPIO_AF_OTG_FS) || ((AF) == GPIO_AF_OTG_HS) || \
  409. ((AF) == GPIO_AF_ETH) || ((AF) == GPIO_AF_OTG_HS_FS) || \
  410. ((AF) == GPIO_AF_SDIO) || ((AF) == GPIO_AF_DCMI) || \
  411. ((AF) == GPIO_AF_EVENTOUT) || ((AF) == GPIO_AF_FSMC))
  412. #endif /* STM32F40_41xxx */
  413. #if defined(STM32F401xx)
  414. #define IS_GPIO_AF(AF) (((AF) == GPIO_AF_RTC_50Hz) || ((AF) == GPIO_AF_TIM14) || \
  415. ((AF) == GPIO_AF_MCO) || ((AF) == GPIO_AF_TAMPER) || \
  416. ((AF) == GPIO_AF_SWJ) || ((AF) == GPIO_AF_TRACE) || \
  417. ((AF) == GPIO_AF_TIM1) || ((AF) == GPIO_AF_TIM2) || \
  418. ((AF) == GPIO_AF_TIM3) || ((AF) == GPIO_AF_TIM4) || \
  419. ((AF) == GPIO_AF_TIM5) || ((AF) == GPIO_AF_TIM8) || \
  420. ((AF) == GPIO_AF_I2C1) || ((AF) == GPIO_AF_I2C2) || \
  421. ((AF) == GPIO_AF_I2C3) || ((AF) == GPIO_AF_SPI1) || \
  422. ((AF) == GPIO_AF_SPI2) || ((AF) == GPIO_AF_TIM13) || \
  423. ((AF) == GPIO_AF_SPI3) || ((AF) == GPIO_AF_TIM14) || \
  424. ((AF) == GPIO_AF_USART1) || ((AF) == GPIO_AF_USART2) || \
  425. ((AF) == GPIO_AF_SDIO) || ((AF) == GPIO_AF_USART6) || \
  426. ((AF) == GPIO_AF_OTG_FS) || ((AF) == GPIO_AF_OTG_HS) || \
  427. ((AF) == GPIO_AF_EVENTOUT) || ((AF) == GPIO_AF_SPI4))
  428. #endif /* STM32F401xx */
  429. #if defined(STM32F411xE)
  430. #define IS_GPIO_AF(AF) (((AF) < 16) && ((AF) != 11) && ((AF) != 13) && ((AF) != 14))
  431. #endif /* STM32F411xE */
  432. #if defined(STM32F410xx)
  433. #define IS_GPIO_AF(AF) (((AF) < 10) || ((AF) == 15))
  434. #endif /* STM32F410xx */
  435. #if defined(STM32F427_437xx) || defined(STM32F429_439xx)
  436. #define IS_GPIO_AF(AF) (((AF) == GPIO_AF_RTC_50Hz) || ((AF) == GPIO_AF_TIM14) || \
  437. ((AF) == GPIO_AF_MCO) || ((AF) == GPIO_AF_TAMPER) || \
  438. ((AF) == GPIO_AF_SWJ) || ((AF) == GPIO_AF_TRACE) || \
  439. ((AF) == GPIO_AF_TIM1) || ((AF) == GPIO_AF_TIM2) || \
  440. ((AF) == GPIO_AF_TIM3) || ((AF) == GPIO_AF_TIM4) || \
  441. ((AF) == GPIO_AF_TIM5) || ((AF) == GPIO_AF_TIM8) || \
  442. ((AF) == GPIO_AF_I2C1) || ((AF) == GPIO_AF_I2C2) || \
  443. ((AF) == GPIO_AF_I2C3) || ((AF) == GPIO_AF_SPI1) || \
  444. ((AF) == GPIO_AF_SPI2) || ((AF) == GPIO_AF_TIM13) || \
  445. ((AF) == GPIO_AF_SPI3) || ((AF) == GPIO_AF_TIM14) || \
  446. ((AF) == GPIO_AF_USART1) || ((AF) == GPIO_AF_USART2) || \
  447. ((AF) == GPIO_AF_USART3) || ((AF) == GPIO_AF_UART4) || \
  448. ((AF) == GPIO_AF_UART5) || ((AF) == GPIO_AF_USART6) || \
  449. ((AF) == GPIO_AF_CAN1) || ((AF) == GPIO_AF_CAN2) || \
  450. ((AF) == GPIO_AF_OTG_FS) || ((AF) == GPIO_AF_OTG_HS) || \
  451. ((AF) == GPIO_AF_ETH) || ((AF) == GPIO_AF_OTG_HS_FS) || \
  452. ((AF) == GPIO_AF_SDIO) || ((AF) == GPIO_AF_DCMI) || \
  453. ((AF) == GPIO_AF_EVENTOUT) || ((AF) == GPIO_AF_SPI4) || \
  454. ((AF) == GPIO_AF_SPI5) || ((AF) == GPIO_AF_SPI6) || \
  455. ((AF) == GPIO_AF_UART7) || ((AF) == GPIO_AF_UART8) || \
  456. ((AF) == GPIO_AF_FMC) || ((AF) == GPIO_AF_SAI1) || \
  457. ((AF) == GPIO_AF_LTDC))
  458. #endif /* STM32F427_437xx || STM32F429_439xx */
  459. #if defined(STM32F412xG)
  460. #define IS_GPIO_AF(AF) (((AF) < 16) && ((AF) != 11) && ((AF) != 14))
  461. #endif /* STM32F412xG */
  462. #if defined(STM32F413_423xx)
  463. #define IS_GPIO_AF(AF) (((AF) < 16) && ((AF) != 13))
  464. #endif /* STM32F413_423xx */
  465. #if defined(STM32F446xx)
  466. #define IS_GPIO_AF(AF) (((AF) < 16) && ((AF) != 11) && ((AF) != 14))
  467. #endif /* STM32F446xx */
  468. #if defined(STM32F469_479xx)
  469. #define IS_GPIO_AF(AF) ((AF) < 16)
  470. #endif /* STM32F469_479xx */
  471. /**
  472. * @}
  473. */
  474. /** @defgroup GPIO_Legacy
  475. * @{
  476. */
  477. #define GPIO_Mode_AIN GPIO_Mode_AN
  478. #define GPIO_AF_OTG1_FS GPIO_AF_OTG_FS
  479. #define GPIO_AF_OTG2_HS GPIO_AF_OTG_HS
  480. #define GPIO_AF_OTG2_FS GPIO_AF_OTG_HS_FS
  481. /**
  482. * @}
  483. */
  484. /**
  485. * @}
  486. */
  487. /* Exported macro ------------------------------------------------------------*/
  488. /* Exported functions --------------------------------------------------------*/
  489. /* Function used to set the GPIO configuration to the default reset state ****/
  490. void GPIO_DeInit(GPIO_TypeDef* GPIOx);
  491. /* Initialization and Configuration functions *********************************/
  492. void GPIO_Init(GPIO_TypeDef* GPIOx, GPIO_InitTypeDef* GPIO_InitStruct);
  493. void GPIO_StructInit(GPIO_InitTypeDef* GPIO_InitStruct);
  494. void GPIO_PinLockConfig(GPIO_TypeDef* GPIOx, uint16_t GPIO_Pin);
  495. /* GPIO Read and Write functions **********************************************/
  496. uint8_t GPIO_ReadInputDataBit(GPIO_TypeDef* GPIOx, uint16_t GPIO_Pin);
  497. uint16_t GPIO_ReadInputData(GPIO_TypeDef* GPIOx);
  498. uint8_t GPIO_ReadOutputDataBit(GPIO_TypeDef* GPIOx, uint16_t GPIO_Pin);
  499. uint16_t GPIO_ReadOutputData(GPIO_TypeDef* GPIOx);
  500. void GPIO_SetBits(GPIO_TypeDef* GPIOx, uint16_t GPIO_Pin);
  501. void GPIO_ResetBits(GPIO_TypeDef* GPIOx, uint16_t GPIO_Pin);
  502. void GPIO_WriteBit(GPIO_TypeDef* GPIOx, uint16_t GPIO_Pin, BitAction BitVal);
  503. void GPIO_Write(GPIO_TypeDef* GPIOx, uint16_t PortVal);
  504. void GPIO_ToggleBits(GPIO_TypeDef* GPIOx, uint16_t GPIO_Pin);
  505. /* GPIO Alternate functions configuration function ****************************/
  506. void GPIO_PinAFConfig(GPIO_TypeDef* GPIOx, uint16_t GPIO_PinSource, uint8_t GPIO_AF);
  507. #ifdef __cplusplus
  508. }
  509. #endif
  510. #endif /*__STM32F4xx_GPIO_H */
  511. /**
  512. * @}
  513. */
  514. /**
  515. * @}
  516. */