stm32f2xx_gpio.h 16 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403
  1. /**
  2. ******************************************************************************
  3. * @file stm32f2xx_gpio.h
  4. * @author MCD Application Team
  5. * @version V1.1.3
  6. * @date 31-December-2021
  7. * @brief This file contains all the functions prototypes for the GPIO firmware
  8. * library.
  9. ******************************************************************************
  10. * @attention
  11. *
  12. * Copyright (c) 2012 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 __STM32F2xx_GPIO_H
  23. #define __STM32F2xx_GPIO_H
  24. #ifdef __cplusplus
  25. extern "C" {
  26. #endif
  27. /* Includes ------------------------------------------------------------------*/
  28. #include "stm32f2xx.h"
  29. /** @addtogroup STM32F2xx_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. /**
  46. * @brief GPIO Configuration Mode enumeration
  47. */
  48. typedef enum
  49. {
  50. GPIO_Mode_IN = 0x00, /*!< GPIO Input Mode */
  51. GPIO_Mode_OUT = 0x01, /*!< GPIO Output Mode */
  52. GPIO_Mode_AF = 0x02, /*!< GPIO Alternate function Mode */
  53. GPIO_Mode_AN = 0x03 /*!< GPIO Analog Mode */
  54. }GPIOMode_TypeDef;
  55. #define IS_GPIO_MODE(MODE) (((MODE) == GPIO_Mode_IN) || ((MODE) == GPIO_Mode_OUT) || \
  56. ((MODE) == GPIO_Mode_AF)|| ((MODE) == GPIO_Mode_AN))
  57. /**
  58. * @brief GPIO Output type enumeration
  59. */
  60. typedef enum
  61. {
  62. GPIO_OType_PP = 0x00,
  63. GPIO_OType_OD = 0x01
  64. }GPIOOType_TypeDef;
  65. #define IS_GPIO_OTYPE(OTYPE) (((OTYPE) == GPIO_OType_PP) || ((OTYPE) == GPIO_OType_OD))
  66. /**
  67. * @brief GPIO Output Maximum frequency enumeration
  68. */
  69. typedef enum
  70. {
  71. GPIO_Speed_2MHz = 0x00, /*!< Low speed */
  72. GPIO_Speed_25MHz = 0x01, /*!< Medium speed */
  73. GPIO_Speed_50MHz = 0x02, /*!< Fast speed */
  74. GPIO_Speed_100MHz = 0x03 /*!< High speed on 30 pF (80 MHz Output max speed on 15 pF) */
  75. }GPIOSpeed_TypeDef;
  76. #define IS_GPIO_SPEED(SPEED) (((SPEED) == GPIO_Speed_2MHz) || ((SPEED) == GPIO_Speed_25MHz) || \
  77. ((SPEED) == GPIO_Speed_50MHz)|| ((SPEED) == GPIO_Speed_100MHz))
  78. /**
  79. * @brief GPIO Configuration PullUp PullDown enumeration
  80. */
  81. typedef enum
  82. {
  83. GPIO_PuPd_NOPULL = 0x00,
  84. GPIO_PuPd_UP = 0x01,
  85. GPIO_PuPd_DOWN = 0x02
  86. }GPIOPuPd_TypeDef;
  87. #define IS_GPIO_PUPD(PUPD) (((PUPD) == GPIO_PuPd_NOPULL) || ((PUPD) == GPIO_PuPd_UP) || \
  88. ((PUPD) == GPIO_PuPd_DOWN))
  89. /**
  90. * @brief GPIO Bit SET and Bit RESET enumeration
  91. */
  92. typedef enum
  93. {
  94. Bit_RESET = 0,
  95. Bit_SET
  96. }BitAction;
  97. #define IS_GPIO_BIT_ACTION(ACTION) (((ACTION) == Bit_RESET) || ((ACTION) == Bit_SET))
  98. /**
  99. * @brief GPIO Init structure definition
  100. */
  101. typedef struct
  102. {
  103. uint32_t GPIO_Pin; /*!< Specifies the GPIO pins to be configured.
  104. This parameter can be any value of @ref GPIO_pins_define */
  105. GPIOMode_TypeDef GPIO_Mode; /*!< Specifies the operating mode for the selected pins.
  106. This parameter can be a value of @ref GPIOMode_TypeDef */
  107. GPIOSpeed_TypeDef GPIO_Speed; /*!< Specifies the speed for the selected pins.
  108. This parameter can be a value of @ref GPIOSpeed_TypeDef */
  109. GPIOOType_TypeDef GPIO_OType; /*!< Specifies the operating output type for the selected pins.
  110. This parameter can be a value of @ref GPIOOType_TypeDef */
  111. GPIOPuPd_TypeDef GPIO_PuPd; /*!< Specifies the operating Pull-up/Pull down for the selected pins.
  112. This parameter can be a value of @ref GPIOPuPd_TypeDef */
  113. }GPIO_InitTypeDef;
  114. /* Exported constants --------------------------------------------------------*/
  115. /** @defgroup GPIO_Exported_Constants
  116. * @{
  117. */
  118. /** @defgroup GPIO_pins_define
  119. * @{
  120. */
  121. #define GPIO_Pin_0 ((uint16_t)0x0001) /* Pin 0 selected */
  122. #define GPIO_Pin_1 ((uint16_t)0x0002) /* Pin 1 selected */
  123. #define GPIO_Pin_2 ((uint16_t)0x0004) /* Pin 2 selected */
  124. #define GPIO_Pin_3 ((uint16_t)0x0008) /* Pin 3 selected */
  125. #define GPIO_Pin_4 ((uint16_t)0x0010) /* Pin 4 selected */
  126. #define GPIO_Pin_5 ((uint16_t)0x0020) /* Pin 5 selected */
  127. #define GPIO_Pin_6 ((uint16_t)0x0040) /* Pin 6 selected */
  128. #define GPIO_Pin_7 ((uint16_t)0x0080) /* Pin 7 selected */
  129. #define GPIO_Pin_8 ((uint16_t)0x0100) /* Pin 8 selected */
  130. #define GPIO_Pin_9 ((uint16_t)0x0200) /* Pin 9 selected */
  131. #define GPIO_Pin_10 ((uint16_t)0x0400) /* Pin 10 selected */
  132. #define GPIO_Pin_11 ((uint16_t)0x0800) /* Pin 11 selected */
  133. #define GPIO_Pin_12 ((uint16_t)0x1000) /* Pin 12 selected */
  134. #define GPIO_Pin_13 ((uint16_t)0x2000) /* Pin 13 selected */
  135. #define GPIO_Pin_14 ((uint16_t)0x4000) /* Pin 14 selected */
  136. #define GPIO_Pin_15 ((uint16_t)0x8000) /* Pin 15 selected */
  137. #define GPIO_Pin_All ((uint16_t)0xFFFF) /* All pins selected */
  138. #define IS_GPIO_PIN(PIN) ((((PIN) & (uint16_t)0x00) == 0x00) && ((PIN) != (uint16_t)0x00))
  139. #define IS_GET_GPIO_PIN(PIN) (((PIN) == GPIO_Pin_0) || \
  140. ((PIN) == GPIO_Pin_1) || \
  141. ((PIN) == GPIO_Pin_2) || \
  142. ((PIN) == GPIO_Pin_3) || \
  143. ((PIN) == GPIO_Pin_4) || \
  144. ((PIN) == GPIO_Pin_5) || \
  145. ((PIN) == GPIO_Pin_6) || \
  146. ((PIN) == GPIO_Pin_7) || \
  147. ((PIN) == GPIO_Pin_8) || \
  148. ((PIN) == GPIO_Pin_9) || \
  149. ((PIN) == GPIO_Pin_10) || \
  150. ((PIN) == GPIO_Pin_11) || \
  151. ((PIN) == GPIO_Pin_12) || \
  152. ((PIN) == GPIO_Pin_13) || \
  153. ((PIN) == GPIO_Pin_14) || \
  154. ((PIN) == GPIO_Pin_15))
  155. /**
  156. * @}
  157. */
  158. /** @defgroup GPIO_Pin_sources
  159. * @{
  160. */
  161. #define GPIO_PinSource0 ((uint8_t)0x00)
  162. #define GPIO_PinSource1 ((uint8_t)0x01)
  163. #define GPIO_PinSource2 ((uint8_t)0x02)
  164. #define GPIO_PinSource3 ((uint8_t)0x03)
  165. #define GPIO_PinSource4 ((uint8_t)0x04)
  166. #define GPIO_PinSource5 ((uint8_t)0x05)
  167. #define GPIO_PinSource6 ((uint8_t)0x06)
  168. #define GPIO_PinSource7 ((uint8_t)0x07)
  169. #define GPIO_PinSource8 ((uint8_t)0x08)
  170. #define GPIO_PinSource9 ((uint8_t)0x09)
  171. #define GPIO_PinSource10 ((uint8_t)0x0A)
  172. #define GPIO_PinSource11 ((uint8_t)0x0B)
  173. #define GPIO_PinSource12 ((uint8_t)0x0C)
  174. #define GPIO_PinSource13 ((uint8_t)0x0D)
  175. #define GPIO_PinSource14 ((uint8_t)0x0E)
  176. #define GPIO_PinSource15 ((uint8_t)0x0F)
  177. #define IS_GPIO_PIN_SOURCE(PINSOURCE) (((PINSOURCE) == GPIO_PinSource0) || \
  178. ((PINSOURCE) == GPIO_PinSource1) || \
  179. ((PINSOURCE) == GPIO_PinSource2) || \
  180. ((PINSOURCE) == GPIO_PinSource3) || \
  181. ((PINSOURCE) == GPIO_PinSource4) || \
  182. ((PINSOURCE) == GPIO_PinSource5) || \
  183. ((PINSOURCE) == GPIO_PinSource6) || \
  184. ((PINSOURCE) == GPIO_PinSource7) || \
  185. ((PINSOURCE) == GPIO_PinSource8) || \
  186. ((PINSOURCE) == GPIO_PinSource9) || \
  187. ((PINSOURCE) == GPIO_PinSource10) || \
  188. ((PINSOURCE) == GPIO_PinSource11) || \
  189. ((PINSOURCE) == GPIO_PinSource12) || \
  190. ((PINSOURCE) == GPIO_PinSource13) || \
  191. ((PINSOURCE) == GPIO_PinSource14) || \
  192. ((PINSOURCE) == GPIO_PinSource15))
  193. /**
  194. * @}
  195. */
  196. /** @defgroup GPIO_Alternat_function_selection_define
  197. * @{
  198. */
  199. /**
  200. * @brief AF 0 selection
  201. */
  202. #define GPIO_AF_RTC_50Hz ((uint8_t)0x00) /* RTC_50Hz Alternate Function mapping */
  203. #define GPIO_AF_MCO ((uint8_t)0x00) /* MCO (MCO1 and MCO2) Alternate Function mapping */
  204. #define GPIO_AF_TAMPER ((uint8_t)0x00) /* TAMPER (TAMPER_1 and TAMPER_2) Alternate Function mapping */
  205. #define GPIO_AF_SWJ ((uint8_t)0x00) /* SWJ (SWD and JTAG) Alternate Function mapping */
  206. #define GPIO_AF_TRACE ((uint8_t)0x00) /* TRACE Alternate Function mapping */
  207. /**
  208. * @brief AF 1 selection
  209. */
  210. #define GPIO_AF_TIM1 ((uint8_t)0x01) /* TIM1 Alternate Function mapping */
  211. #define GPIO_AF_TIM2 ((uint8_t)0x01) /* TIM2 Alternate Function mapping */
  212. /**
  213. * @brief AF 2 selection
  214. */
  215. #define GPIO_AF_TIM3 ((uint8_t)0x02) /* TIM3 Alternate Function mapping */
  216. #define GPIO_AF_TIM4 ((uint8_t)0x02) /* TIM4 Alternate Function mapping */
  217. #define GPIO_AF_TIM5 ((uint8_t)0x02) /* TIM5 Alternate Function mapping */
  218. /**
  219. * @brief AF 3 selection
  220. */
  221. #define GPIO_AF_TIM8 ((uint8_t)0x03) /* TIM8 Alternate Function mapping */
  222. #define GPIO_AF_TIM9 ((uint8_t)0x03) /* TIM9 Alternate Function mapping */
  223. #define GPIO_AF_TIM10 ((uint8_t)0x03) /* TIM10 Alternate Function mapping */
  224. #define GPIO_AF_TIM11 ((uint8_t)0x03) /* TIM11 Alternate Function mapping */
  225. /**
  226. * @brief AF 4 selection
  227. */
  228. #define GPIO_AF_I2C1 ((uint8_t)0x04) /* I2C1 Alternate Function mapping */
  229. #define GPIO_AF_I2C2 ((uint8_t)0x04) /* I2C2 Alternate Function mapping */
  230. #define GPIO_AF_I2C3 ((uint8_t)0x04) /* I2C3 Alternate Function mapping */
  231. /**
  232. * @brief AF 5 selection
  233. */
  234. #define GPIO_AF_SPI1 ((uint8_t)0x05) /* SPI1 Alternate Function mapping */
  235. #define GPIO_AF_SPI2 ((uint8_t)0x05) /* SPI2/I2S2 Alternate Function mapping */
  236. /**
  237. * @brief AF 6 selection
  238. */
  239. #define GPIO_AF_SPI3 ((uint8_t)0x06) /* SPI3/I2S3 Alternate Function mapping */
  240. /**
  241. * @brief AF 7 selection
  242. */
  243. #define GPIO_AF_USART1 ((uint8_t)0x07) /* USART1 Alternate Function mapping */
  244. #define GPIO_AF_USART2 ((uint8_t)0x07) /* USART2 Alternate Function mapping */
  245. #define GPIO_AF_USART3 ((uint8_t)0x07) /* USART3 Alternate Function mapping */
  246. /**
  247. * @brief AF 8 selection
  248. */
  249. #define GPIO_AF_UART4 ((uint8_t)0x08) /* UART4 Alternate Function mapping */
  250. #define GPIO_AF_UART5 ((uint8_t)0x08) /* UART5 Alternate Function mapping */
  251. #define GPIO_AF_USART6 ((uint8_t)0x08) /* USART6 Alternate Function mapping */
  252. /**
  253. * @brief AF 9 selection
  254. */
  255. #define GPIO_AF_CAN1 ((uint8_t)0x09) /* CAN1 Alternate Function mapping */
  256. #define GPIO_AF_CAN2 ((uint8_t)0x09) /* CAN2 Alternate Function mapping */
  257. #define GPIO_AF_TIM12 ((uint8_t)0x09) /* TIM12 Alternate Function mapping */
  258. #define GPIO_AF_TIM13 ((uint8_t)0x09) /* TIM13 Alternate Function mapping */
  259. #define GPIO_AF_TIM14 ((uint8_t)0x09) /* TIM14 Alternate Function mapping */
  260. /**
  261. * @brief AF 10 selection
  262. */
  263. #define GPIO_AF_OTG_FS ((uint8_t)0xA) /* OTG_FS Alternate Function mapping */
  264. #define GPIO_AF_OTG_HS ((uint8_t)0xA) /* OTG_HS Alternate Function mapping */
  265. /**
  266. * @brief AF 11 selection
  267. */
  268. #define GPIO_AF_ETH ((uint8_t)0x0B) /* ETHERNET Alternate Function mapping */
  269. /**
  270. * @brief AF 12 selection
  271. */
  272. #define GPIO_AF_FSMC ((uint8_t)0xC) /* FSMC Alternate Function mapping */
  273. #define GPIO_AF_OTG_HS_FS ((uint8_t)0xC) /* OTG HS configured in FS, Alternate Function mapping */
  274. #define GPIO_AF_SDIO ((uint8_t)0xC) /* SDIO Alternate Function mapping */
  275. /**
  276. * @brief AF 13 selection
  277. */
  278. #define GPIO_AF_DCMI ((uint8_t)0x0D) /* DCMI Alternate Function mapping */
  279. /**
  280. * @brief AF 15 selection
  281. */
  282. #define GPIO_AF_EVENTOUT ((uint8_t)0x0F) /* EVENTOUT Alternate Function mapping */
  283. #define IS_GPIO_AF(AF) (((AF) == GPIO_AF_RTC_50Hz) || ((AF) == GPIO_AF_TIM14) || \
  284. ((AF) == GPIO_AF_MCO) || ((AF) == GPIO_AF_TAMPER) || \
  285. ((AF) == GPIO_AF_SWJ) || ((AF) == GPIO_AF_TRACE) || \
  286. ((AF) == GPIO_AF_TIM1) || ((AF) == GPIO_AF_TIM2) || \
  287. ((AF) == GPIO_AF_TIM3) || ((AF) == GPIO_AF_TIM4) || \
  288. ((AF) == GPIO_AF_TIM5) || ((AF) == GPIO_AF_TIM8) || \
  289. ((AF) == GPIO_AF_I2C1) || ((AF) == GPIO_AF_I2C2) || \
  290. ((AF) == GPIO_AF_I2C3) || ((AF) == GPIO_AF_SPI1) || \
  291. ((AF) == GPIO_AF_SPI2) || ((AF) == GPIO_AF_TIM13) || \
  292. ((AF) == GPIO_AF_SPI3) || ((AF) == GPIO_AF_TIM14) || \
  293. ((AF) == GPIO_AF_USART1) || ((AF) == GPIO_AF_USART2) || \
  294. ((AF) == GPIO_AF_USART3) || ((AF) == GPIO_AF_UART4) || \
  295. ((AF) == GPIO_AF_UART5) || ((AF) == GPIO_AF_USART6) || \
  296. ((AF) == GPIO_AF_CAN1) || ((AF) == GPIO_AF_CAN2) || \
  297. ((AF) == GPIO_AF_OTG_FS) || ((AF) == GPIO_AF_OTG_HS) || \
  298. ((AF) == GPIO_AF_ETH) || ((AF) == GPIO_AF_FSMC) || \
  299. ((AF) == GPIO_AF_OTG_HS_FS) || ((AF) == GPIO_AF_SDIO) || \
  300. ((AF) == GPIO_AF_DCMI) || ((AF) == GPIO_AF_EVENTOUT))
  301. /**
  302. * @}
  303. */
  304. /** @defgroup GPIO_Legacy
  305. * @{
  306. */
  307. #define GPIO_Mode_AIN GPIO_Mode_AN
  308. #define GPIO_AF_OTG1_FS GPIO_AF_OTG_FS
  309. #define GPIO_AF_OTG2_HS GPIO_AF_OTG_HS
  310. #define GPIO_AF_OTG2_FS GPIO_AF_OTG_HS_FS
  311. /**
  312. * @}
  313. */
  314. /**
  315. * @}
  316. */
  317. /* Exported macro ------------------------------------------------------------*/
  318. /* Exported functions --------------------------------------------------------*/
  319. /* Function used to set the GPIO configuration to the default reset state ****/
  320. void GPIO_DeInit(GPIO_TypeDef* GPIOx);
  321. /* Initialization and Configuration functions *********************************/
  322. void GPIO_Init(GPIO_TypeDef* GPIOx, GPIO_InitTypeDef* GPIO_InitStruct);
  323. void GPIO_StructInit(GPIO_InitTypeDef* GPIO_InitStruct);
  324. void GPIO_PinLockConfig(GPIO_TypeDef* GPIOx, uint16_t GPIO_Pin);
  325. /* GPIO Read and Write functions **********************************************/
  326. uint8_t GPIO_ReadInputDataBit(GPIO_TypeDef* GPIOx, uint16_t GPIO_Pin);
  327. uint16_t GPIO_ReadInputData(GPIO_TypeDef* GPIOx);
  328. uint8_t GPIO_ReadOutputDataBit(GPIO_TypeDef* GPIOx, uint16_t GPIO_Pin);
  329. uint16_t GPIO_ReadOutputData(GPIO_TypeDef* GPIOx);
  330. void GPIO_SetBits(GPIO_TypeDef* GPIOx, uint16_t GPIO_Pin);
  331. void GPIO_ResetBits(GPIO_TypeDef* GPIOx, uint16_t GPIO_Pin);
  332. void GPIO_WriteBit(GPIO_TypeDef* GPIOx, uint16_t GPIO_Pin, BitAction BitVal);
  333. void GPIO_Write(GPIO_TypeDef* GPIOx, uint16_t PortVal);
  334. void GPIO_ToggleBits(GPIO_TypeDef* GPIOx, uint16_t GPIO_Pin);
  335. /* GPIO Alternate functions configuration function ****************************/
  336. void GPIO_PinAFConfig(GPIO_TypeDef* GPIOx, uint16_t GPIO_PinSource, uint8_t GPIO_AF);
  337. #ifdef __cplusplus
  338. }
  339. #endif
  340. #endif /*__STM32F2xx_GPIO_H */
  341. /**
  342. * @}
  343. */
  344. /**
  345. * @}
  346. */