You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 

225 lines
7.0 KiB

  1. /**
  2. ******************************************************************************
  3. * @file stm32h7xx.h
  4. * @author MCD Application Team
  5. * @brief CMSIS STM32H7xx Device Peripheral Access Layer Header File.
  6. *
  7. * The file is the unique include file that the application programmer
  8. * is using in the C source code, usually in main.c. This file contains:
  9. * - Configuration section that allows to select:
  10. * - The STM32H7xx device used in the target application
  11. * - To use or not the peripheral's drivers in application code(i.e.
  12. * code will be based on direct access to peripheral's registers
  13. * rather than drivers API), this option is controlled by
  14. * "#define USE_HAL_DRIVER"
  15. *
  16. ******************************************************************************
  17. * @attention
  18. *
  19. * <h2><center>&copy; Copyright (c) 2017 STMicroelectronics.
  20. * All rights reserved.</center></h2>
  21. *
  22. * This software component is licensed by ST under BSD 3-Clause license,
  23. * the "License"; You may not use this file except in compliance with the
  24. * License. You may obtain a copy of the License at:
  25. * opensource.org/licenses/BSD-3-Clause
  26. *
  27. ******************************************************************************
  28. */
  29. /** @addtogroup CMSIS
  30. * @{
  31. */
  32. /** @addtogroup stm32h7xx
  33. * @{
  34. */
  35. #ifndef STM32H7xx_H
  36. #define STM32H7xx_H
  37. #ifdef __cplusplus
  38. extern "C" {
  39. #endif /* __cplusplus */
  40. /** @addtogroup Library_configuration_section
  41. * @{
  42. */
  43. /**
  44. * @brief STM32 Family
  45. */
  46. #if !defined (STM32H7)
  47. #define STM32H7
  48. #endif /* STM32H7 */
  49. /* Uncomment the line below according to the target STM32H7 device used in your
  50. application
  51. */
  52. #if !defined (STM32H743xx) && !defined (STM32H753xx) && !defined (STM32H750xx) && !defined (STM32H742xx) && \
  53. !defined (STM32H745xx) && !defined (STM32H755xx) && !defined (STM32H747xx) && !defined (STM32H757xx) && \
  54. !defined (STM32H7A3xx) && !defined (STM32H7A3xxQ) && !defined (STM32H7B3xx) && !defined (STM32H7B3xxQ) && !defined (STM32H7B0xx) && !defined (STM32H7B0xxQ)
  55. /* #define STM32H742xx */ /*!< STM32H742VI, STM32H742ZI, STM32H742AI, STM32H742II, STM32H742BI, STM32H742XI Devices */
  56. /* #define STM32H743xx */ /*!< STM32H743VI, STM32H743ZI, STM32H743AI, STM32H743II, STM32H743BI, STM32H743XI Devices */
  57. /* #define STM32H753xx */ /*!< STM32H753VI, STM32H753ZI, STM32H753AI, STM32H753II, STM32H753BI, STM32H753XI Devices */
  58. /* #define STM32H750xx */ /*!< STM32H750V, STM32H750I, STM32H750X Devices */
  59. /* #define STM32H747xx */ /*!< STM32H747ZI, STM32H747AI, STM32H747II, STM32H747BI, STM32H747XI Devices */
  60. /* #define STM32H757xx */ /*!< STM32H757ZI, STM32H757AI, STM32H757II, STM32H757BI, STM32H757XI Devices */
  61. /* #define STM32H745xx */ /*!< STM32H745ZI, STM32H745II, STM32H745BI, STM32H745XI Devices */
  62. /* #define STM32H755xx */ /*!< STM32H755ZI, STM32H755II, STM32H755BI, STM32H755XI Devices */
  63. /* #define STM32H7B0xx */ /*!< STM32H7B0ABIxQ, STM32H7B0IBTx, STM32H7B0RBTx, STM32H7B0VBTx, STM32H7B0ZBTx, STM32H7B0IBKxQ */
  64. /* #define STM32H7A3xx */ /*!< STM32H7A3IIK6, STM32H7A3IIT6, STM32H7A3NIH6, STM32H7A3RIT6, STM32H7A3VIH6, STM32H7A3VIT6, STM32H7A3ZIT6 */
  65. /* #define STM32H7A3xxQ */ /*!< STM32H7A3QIY6Q, STM32H7A3IIK6Q, STM32H7A3IIT6Q, STM32H7A3LIH6Q, STM32H7A3VIH6Q, STM32H7A3VIT6Q, STM32H7A3AII6Q, STM32H7A3ZIT6Q */
  66. /* #define STM32H7B3xx */ /*!< STM32H7B3IIK6, STM32H7B3IIT6, STM32H7B3NIH6, STM32H7B3RIT6, STM32H7B3VIH6, STM32H7B3VIT6, STM32H7B3ZIT6 */
  67. /* #define STM32H7B3xxQ */ /*!< STM32H7B3QIY6Q, STM32H7B3IIK6Q, STM32H7B3IIT6Q, STM32H7B3LIH6Q, STM32H7B3VIH6Q, STM32H7B3VIT6Q, STM32H7B3AII6Q, STM32H7B3ZIT6Q */
  68. #endif
  69. /* Tip: To avoid modifying this file each time you need to switch between these
  70. devices, you can define the device in your toolchain compiler preprocessor.
  71. */
  72. #if defined(DUAL_CORE) && !defined(CORE_CM4) && !defined(CORE_CM7)
  73. #error "Dual core device, please select CORE_CM4 or CORE_CM7"
  74. #endif
  75. #if !defined (USE_HAL_DRIVER)
  76. /**
  77. * @brief Comment the line below if you will not use the peripherals drivers.
  78. In this case, these drivers will not be included and the application code will
  79. be based on direct access to peripherals registers
  80. */
  81. /*#define USE_HAL_DRIVER */
  82. #endif /* USE_HAL_DRIVER */
  83. /**
  84. * @brief CMSIS Device version number V1.7.0
  85. */
  86. #define __STM32H7xx_CMSIS_DEVICE_VERSION_MAIN (0x01) /*!< [31:24] main version */
  87. #define __STM32H7xx_CMSIS_DEVICE_VERSION_SUB1 (0x07) /*!< [23:16] sub1 version */
  88. #define __STM32H7xx_CMSIS_DEVICE_VERSION_SUB2 (0x00) /*!< [15:8] sub2 version */
  89. #define __STM32H7xx_CMSIS_DEVICE_VERSION_RC (0x00) /*!< [7:0] release candidate */
  90. #define __STM32H7xx_CMSIS_DEVICE_VERSION ((__CMSIS_DEVICE_VERSION_MAIN << 24)\
  91. |(__CMSIS_DEVICE_HAL_VERSION_SUB1 << 16)\
  92. |(__CMSIS_DEVICE_HAL_VERSION_SUB2 << 8 )\
  93. |(__CMSIS_DEVICE_HAL_VERSION_RC))
  94. /**
  95. * @}
  96. */
  97. /** @addtogroup Device_Included
  98. * @{
  99. */
  100. #if defined(STM32H743xx)
  101. #include "stm32h743xx.h"
  102. #elif defined(STM32H753xx)
  103. #include "stm32h753xx.h"
  104. #elif defined(STM32H750xx)
  105. #include "stm32h750xx.h"
  106. #elif defined(STM32H742xx)
  107. #include "stm32h742xx.h"
  108. #elif defined(STM32H745xx)
  109. #include "stm32h745xx.h"
  110. #elif defined(STM32H755xx)
  111. #include "stm32h755xx.h"
  112. #elif defined(STM32H747xx)
  113. #include "stm32h747xx.h"
  114. #elif defined(STM32H757xx)
  115. #include "stm32h757xx.h"
  116. #elif defined(STM32H7B0xx)
  117. #include "stm32h7b0xx.h"
  118. #elif defined(STM32H7B0xxQ)
  119. #include "stm32h7b0xxq.h"
  120. #elif defined(STM32H7A3xx)
  121. #include "stm32h7a3xx.h"
  122. #elif defined(STM32H7B3xx)
  123. #include "stm32h7b3xx.h"
  124. #elif defined(STM32H7A3xxQ)
  125. #include "stm32h7a3xxq.h"
  126. #elif defined(STM32H7B3xxQ)
  127. #include "stm32h7b3xxq.h"
  128. #else
  129. #error "Please select first the target STM32H7xx device used in your application (in stm32h7xx.h file)"
  130. #endif
  131. /**
  132. * @}
  133. */
  134. /** @addtogroup Exported_types
  135. * @{
  136. */
  137. typedef enum
  138. {
  139. RESET = 0,
  140. SET = !RESET
  141. } FlagStatus, ITStatus;
  142. typedef enum
  143. {
  144. DISABLE = 0,
  145. ENABLE = !DISABLE
  146. } FunctionalState;
  147. #define IS_FUNCTIONAL_STATE(STATE) (((STATE) == DISABLE) || ((STATE) == ENABLE))
  148. typedef enum
  149. {
  150. ERROR = 0,
  151. SUCCESS = !ERROR
  152. } ErrorStatus;
  153. /**
  154. * @}
  155. */
  156. /** @addtogroup Exported_macros
  157. * @{
  158. */
  159. #define SET_BIT(REG, BIT) ((REG) |= (BIT))
  160. #define CLEAR_BIT(REG, BIT) ((REG) &= ~(BIT))
  161. #define READ_BIT(REG, BIT) ((REG) & (BIT))
  162. #define CLEAR_REG(REG) ((REG) = (0x0))
  163. #define WRITE_REG(REG, VAL) ((REG) = (VAL))
  164. #define READ_REG(REG) ((REG))
  165. #define MODIFY_REG(REG, CLEARMASK, SETMASK) WRITE_REG((REG), (((READ_REG(REG)) & (~(CLEARMASK))) | (SETMASK)))
  166. #define POSITION_VAL(VAL) (__CLZ(__RBIT(VAL)))
  167. /**
  168. * @}
  169. */
  170. #if defined (USE_HAL_DRIVER)
  171. #include "stm32h7xx_hal.h"
  172. #endif /* USE_HAL_DRIVER */
  173. #ifdef __cplusplus
  174. }
  175. #endif /* __cplusplus */
  176. #endif /* STM32H7xx_H */
  177. /**
  178. * @}
  179. */
  180. /**
  181. * @}
  182. */
  183. /************************ (C) COPYRIGHT STMicroelectronics *****END OF FILE****/