Merge pull request #11270 from haslinghuis/rename_attr
[betaflight.git] / lib / main / STM32H7 / Drivers / STM32H7xx_HAL_Driver / Inc / stm32h7xx_hal_def.h
blobd59c8c12bb41bc3ece4ef6945ab4b378e6bfcead
1 /**
2 ******************************************************************************
3 * @file stm32h7xx_hal_def.h
4 * @author MCD Application Team
5 * @brief This file contains HAL common defines, enumeration, macros and
6 * structures definitions.
7 ******************************************************************************
8 * @attention
10 * <h2><center>&copy; Copyright (c) 2017 STMicroelectronics.
11 * All rights reserved.</center></h2>
13 * This software component is licensed by ST under BSD 3-Clause license,
14 * the "License"; You may not use this file except in compliance with the
15 * License. You may obtain a copy of the License at:
16 * opensource.org/licenses/BSD-3-Clause
18 ******************************************************************************
21 /* Define to prevent recursive inclusion -------------------------------------*/
22 #ifndef STM32H7xx_HAL_DEF
23 #define STM32H7xx_HAL_DEF
25 #ifdef __cplusplus
26 extern "C" {
27 #endif
29 /* Includes ------------------------------------------------------------------*/
30 #include "stm32h7xx.h"
31 #include "Legacy/stm32_hal_legacy.h"
32 #include <stddef.h>
33 #include <math.h>
35 /* Exported types ------------------------------------------------------------*/
37 /**
38 * @brief HAL Status structures definition
40 typedef enum
42 HAL_OK = 0x00,
43 HAL_ERROR = 0x01,
44 HAL_BUSY = 0x02,
45 HAL_TIMEOUT = 0x03
46 } HAL_StatusTypeDef;
48 /**
49 * @brief HAL Lock structures definition
51 typedef enum
53 HAL_UNLOCKED = 0x00,
54 HAL_LOCKED = 0x01
55 } HAL_LockTypeDef;
57 /* Exported macro ------------------------------------------------------------*/
59 #define HAL_MAX_DELAY 0xFFFFFFFFU
61 #define HAL_IS_BIT_SET(REG, BIT) (((REG) & (BIT)) == (BIT))
62 #define HAL_IS_BIT_CLR(REG, BIT) (((REG) & (BIT)) == 0U)
64 #define __HAL_LINKDMA(__HANDLE__, __PPP_DMA_FIELD__, __DMA_HANDLE__) \
65 do{ \
66 (__HANDLE__)->__PPP_DMA_FIELD__ = &(__DMA_HANDLE__); \
67 (__DMA_HANDLE__).Parent = (__HANDLE__); \
68 } while(0)
70 #define UNUSED(x) ((void)(x))
72 /** @brief Reset the Handle's State field.
73 * @param __HANDLE__: specifies the Peripheral Handle.
74 * @note This macro can be used for the following purpose:
75 * - When the Handle is declared as local variable; before passing it as parameter
76 * to HAL_PPP_Init() for the first time, it is mandatory to use this macro
77 * to set to 0 the Handle's "State" field.
78 * Otherwise, "State" field may have any random value and the first time the function
79 * HAL_PPP_Init() is called, the low level hardware initialization will be missed
80 * (i.e. HAL_PPP_MspInit() will not be executed).
81 * - When there is a need to reconfigure the low level hardware: instead of calling
82 * HAL_PPP_DeInit() then HAL_PPP_Init(), user can make a call to this macro then HAL_PPP_Init().
83 * In this later function, when the Handle's "State" field is set to 0, it will execute the function
84 * HAL_PPP_MspInit() which will reconfigure the low level hardware.
85 * @retval None
87 #define __HAL_RESET_HANDLE_STATE(__HANDLE__) ((__HANDLE__)->State = 0)
89 #if (USE_RTOS == 1)
90 #error " USE_RTOS should be 0 in the current HAL release "
91 #else
92 #define __HAL_LOCK(__HANDLE__) \
93 do{ \
94 if((__HANDLE__)->Lock == HAL_LOCKED) \
95 { \
96 return HAL_BUSY; \
97 } \
98 else \
99 { \
100 (__HANDLE__)->Lock = HAL_LOCKED; \
102 }while (0)
104 #define __HAL_UNLOCK(__HANDLE__) \
105 do{ \
106 (__HANDLE__)->Lock = HAL_UNLOCKED; \
107 }while (0)
108 #endif /* USE_RTOS */
110 #if defined ( __GNUC__ )
111 #ifndef __weak
112 #define __weak __attribute__((weak))
113 #endif /* __weak */
114 #ifndef __packed
115 #define __packed __attribute__((__packed__))
116 #endif /* __packed */
117 #endif /* __GNUC__ */
120 /* Macro to get variable aligned on 4-bytes, for __ICCARM__ the directive "#pragma data_alignment=4" must be used instead */
121 #if defined (__GNUC__) /* GNU Compiler */
122 #ifndef __ALIGN_END
123 #define __ALIGN_END __attribute__ ((aligned (4)))
124 #endif /* __ALIGN_END */
125 #ifndef __ALIGN_BEGIN
126 #define __ALIGN_BEGIN
127 #endif /* __ALIGN_BEGIN */
128 #else
129 #ifndef __ALIGN_END
130 #define __ALIGN_END
131 #endif /* __ALIGN_END */
132 #ifndef __ALIGN_BEGIN
133 #if defined (__CC_ARM) /* ARM Compiler */
134 #define __ALIGN_BEGIN __align(4)
135 #elif defined (__ICCARM__) /* IAR Compiler */
136 #define __ALIGN_BEGIN
137 #endif /* __CC_ARM */
138 #endif /* __ALIGN_BEGIN */
139 #endif /* __GNUC__ */
141 /* Macro to get variable aligned on 32-bytes,needed for cache maintenance purpose */
142 #if defined (__GNUC__) /* GNU Compiler */
143 #define ALIGN_32BYTES(buf) buf __attribute__ ((aligned (32)))
144 #elif defined (__ICCARM__) /* IAR Compiler */
145 #define ALIGN_32BYTES(buf) _Pragma("data_alignment=32") buf
146 #elif defined (__CC_ARM) /* ARM Compiler */
147 #define ALIGN_32BYTES(buf) __align(32) buf
148 #endif
151 * @brief __RAM_FUNC definition
153 #if defined ( __CC_ARM )
154 /* ARM Compiler
155 ------------
156 RAM functions are defined using the toolchain options.
157 Functions that are executed in RAM should reside in a separate source module.
158 Using the 'Options for File' dialog you can simply change the 'Code / Const'
159 area of a module to a memory space in physical RAM.
160 Available memory areas are declared in the 'Target' tab of the 'Options for Target'
161 dialog.
163 #define __RAM_FUNC
165 #elif defined ( __ICCARM__ )
166 /* ICCARM Compiler
167 ---------------
168 RAM functions are defined using a specific toolchain keyword "__ramfunc".
170 #define __RAM_FUNC __ramfunc
172 #elif defined ( __GNUC__ )
173 /* GNU Compiler
174 ------------
175 RAM functions are defined using a specific toolchain attribute
176 "__attribute__((section(".RamFunc")))".
178 #define __RAM_FUNC __attribute__((section(".RamFunc")))
180 #endif
182 #ifdef __cplusplus
184 #endif
186 #endif /* STM32H7xx_HAL_DEF */
188 /************************ (C) COPYRIGHT STMicroelectronics *****END OF FILE****/