Fork of the official mbed C/C SDK provides the software platform and libraries to build your applications for RenBED.

Dependents:   1-RenBuggyTimed RenBED_RGB RenBED_RGB_PWM RenBED_RGB

Fork of mbed by mbed official

Committer:
elijahorr
Date:
Thu Apr 14 07:28:54 2016 +0000
Revision:
121:672067c3ada4
Parent:
110:165afa46840b
.

Who changed what in which revision?

UserRevisionLine numberNew contents of line
Kojto 93:e188a91d3eaa 1 /**
Kojto 93:e188a91d3eaa 2 ******************************************************************************
Kojto 93:e188a91d3eaa 3 * @file stm32f4xx_hal_dma2d.h
Kojto 93:e188a91d3eaa 4 * @author MCD Application Team
Kojto 110:165afa46840b 5 * @version V1.4.1
Kojto 110:165afa46840b 6 * @date 09-October-2015
Kojto 93:e188a91d3eaa 7 * @brief Header file of DMA2D HAL module.
Kojto 93:e188a91d3eaa 8 ******************************************************************************
Kojto 93:e188a91d3eaa 9 * @attention
Kojto 93:e188a91d3eaa 10 *
Kojto 99:dbbf35b96557 11 * <h2><center>&copy; COPYRIGHT(c) 2015 STMicroelectronics</center></h2>
Kojto 93:e188a91d3eaa 12 *
Kojto 93:e188a91d3eaa 13 * Redistribution and use in source and binary forms, with or without modification,
Kojto 93:e188a91d3eaa 14 * are permitted provided that the following conditions are met:
Kojto 93:e188a91d3eaa 15 * 1. Redistributions of source code must retain the above copyright notice,
Kojto 93:e188a91d3eaa 16 * this list of conditions and the following disclaimer.
Kojto 93:e188a91d3eaa 17 * 2. Redistributions in binary form must reproduce the above copyright notice,
Kojto 93:e188a91d3eaa 18 * this list of conditions and the following disclaimer in the documentation
Kojto 93:e188a91d3eaa 19 * and/or other materials provided with the distribution.
Kojto 93:e188a91d3eaa 20 * 3. Neither the name of STMicroelectronics nor the names of its contributors
Kojto 93:e188a91d3eaa 21 * may be used to endorse or promote products derived from this software
Kojto 93:e188a91d3eaa 22 * without specific prior written permission.
Kojto 93:e188a91d3eaa 23 *
Kojto 93:e188a91d3eaa 24 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
Kojto 93:e188a91d3eaa 25 * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
Kojto 93:e188a91d3eaa 26 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
Kojto 93:e188a91d3eaa 27 * DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE
Kojto 93:e188a91d3eaa 28 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
Kojto 93:e188a91d3eaa 29 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
Kojto 93:e188a91d3eaa 30 * SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
Kojto 93:e188a91d3eaa 31 * CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
Kojto 93:e188a91d3eaa 32 * OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
Kojto 93:e188a91d3eaa 33 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
Kojto 93:e188a91d3eaa 34 *
Kojto 93:e188a91d3eaa 35 ******************************************************************************
Kojto 93:e188a91d3eaa 36 */
Kojto 93:e188a91d3eaa 37
Kojto 93:e188a91d3eaa 38 /* Define to prevent recursive inclusion -------------------------------------*/
Kojto 93:e188a91d3eaa 39 #ifndef __STM32F4xx_HAL_DMA2D_H
Kojto 93:e188a91d3eaa 40 #define __STM32F4xx_HAL_DMA2D_H
Kojto 93:e188a91d3eaa 41
Kojto 93:e188a91d3eaa 42 #ifdef __cplusplus
Kojto 93:e188a91d3eaa 43 extern "C" {
Kojto 93:e188a91d3eaa 44 #endif
Kojto 93:e188a91d3eaa 45
Kojto 110:165afa46840b 46 #if defined(STM32F427xx) || defined(STM32F437xx) || defined(STM32F429xx) || defined(STM32F439xx) ||\
Kojto 110:165afa46840b 47 defined(STM32F469xx) || defined(STM32F479xx)
Kojto 93:e188a91d3eaa 48 /* Includes ------------------------------------------------------------------*/
Kojto 93:e188a91d3eaa 49 #include "stm32f4xx_hal_def.h"
Kojto 93:e188a91d3eaa 50
Kojto 93:e188a91d3eaa 51 /** @addtogroup STM32F4xx_HAL_Driver
Kojto 93:e188a91d3eaa 52 * @{
Kojto 93:e188a91d3eaa 53 */
Kojto 93:e188a91d3eaa 54
Kojto 99:dbbf35b96557 55 /** @defgroup DMA2D DMA2D
Kojto 99:dbbf35b96557 56 * @brief DMA2D HAL module driver
Kojto 93:e188a91d3eaa 57 * @{
Kojto 99:dbbf35b96557 58 */
Kojto 99:dbbf35b96557 59
Kojto 93:e188a91d3eaa 60 /* Exported types ------------------------------------------------------------*/
Kojto 99:dbbf35b96557 61 /** @defgroup DMA2D_Exported_Types DMA2D Exported Types
Kojto 99:dbbf35b96557 62 * @{
Kojto 99:dbbf35b96557 63 */
Kojto 93:e188a91d3eaa 64 #define MAX_DMA2D_LAYER 2
Kojto 93:e188a91d3eaa 65
Kojto 93:e188a91d3eaa 66 /**
Kojto 93:e188a91d3eaa 67 * @brief DMA2D color Structure definition
Kojto 93:e188a91d3eaa 68 */
Kojto 93:e188a91d3eaa 69 typedef struct
Kojto 93:e188a91d3eaa 70 {
Kojto 93:e188a91d3eaa 71 uint32_t Blue; /*!< Configures the blue value.
Kojto 93:e188a91d3eaa 72 This parameter must be a number between Min_Data = 0x00 and Max_Data = 0xFF. */
Kojto 93:e188a91d3eaa 73
Kojto 93:e188a91d3eaa 74 uint32_t Green; /*!< Configures the green value.
Kojto 93:e188a91d3eaa 75 This parameter must be a number between Min_Data = 0x00 and Max_Data = 0xFF. */
Kojto 93:e188a91d3eaa 76
Kojto 93:e188a91d3eaa 77 uint32_t Red; /*!< Configures the red value.
Kojto 93:e188a91d3eaa 78 This parameter must be a number between Min_Data = 0x00 and Max_Data = 0xFF. */
Kojto 93:e188a91d3eaa 79 } DMA2D_ColorTypeDef;
Kojto 93:e188a91d3eaa 80
Kojto 93:e188a91d3eaa 81 /**
Kojto 93:e188a91d3eaa 82 * @brief DMA2D CLUT Structure definition
Kojto 93:e188a91d3eaa 83 */
Kojto 93:e188a91d3eaa 84 typedef struct
Kojto 93:e188a91d3eaa 85 {
Kojto 93:e188a91d3eaa 86 uint32_t *pCLUT; /*!< Configures the DMA2D CLUT memory address.*/
Kojto 93:e188a91d3eaa 87
Kojto 93:e188a91d3eaa 88 uint32_t CLUTColorMode; /*!< configures the DMA2D CLUT color mode.
Kojto 93:e188a91d3eaa 89 This parameter can be one value of @ref DMA2D_CLUT_CM */
Kojto 93:e188a91d3eaa 90
Kojto 93:e188a91d3eaa 91 uint32_t Size; /*!< configures the DMA2D CLUT size.
Kojto 93:e188a91d3eaa 92 This parameter must be a number between Min_Data = 0x00 and Max_Data = 0xFF.*/
Kojto 93:e188a91d3eaa 93 } DMA2D_CLUTCfgTypeDef;
Kojto 93:e188a91d3eaa 94
Kojto 93:e188a91d3eaa 95 /**
Kojto 93:e188a91d3eaa 96 * @brief DMA2D Init structure definition
Kojto 93:e188a91d3eaa 97 */
Kojto 93:e188a91d3eaa 98 typedef struct
Kojto 93:e188a91d3eaa 99 {
Kojto 93:e188a91d3eaa 100 uint32_t Mode; /*!< configures the DMA2D transfer mode.
Kojto 93:e188a91d3eaa 101 This parameter can be one value of @ref DMA2D_Mode */
Kojto 93:e188a91d3eaa 102
Kojto 93:e188a91d3eaa 103 uint32_t ColorMode; /*!< configures the color format of the output image.
Kojto 93:e188a91d3eaa 104 This parameter can be one value of @ref DMA2D_Color_Mode */
Kojto 93:e188a91d3eaa 105
Kojto 93:e188a91d3eaa 106 uint32_t OutputOffset; /*!< Specifies the Offset value.
Kojto 93:e188a91d3eaa 107 This parameter must be a number between Min_Data = 0x0000 and Max_Data = 0x3FFF. */
Kojto 93:e188a91d3eaa 108 } DMA2D_InitTypeDef;
Kojto 93:e188a91d3eaa 109
Kojto 93:e188a91d3eaa 110 /**
Kojto 93:e188a91d3eaa 111 * @brief DMA2D Layer structure definition
Kojto 93:e188a91d3eaa 112 */
Kojto 93:e188a91d3eaa 113 typedef struct
Kojto 93:e188a91d3eaa 114 {
Kojto 93:e188a91d3eaa 115 uint32_t InputOffset; /*!< configures the DMA2D foreground offset.
Kojto 93:e188a91d3eaa 116 This parameter must be a number between Min_Data = 0x0000 and Max_Data = 0x3FFF. */
Kojto 93:e188a91d3eaa 117
Kojto 93:e188a91d3eaa 118 uint32_t InputColorMode; /*!< configures the DMA2D foreground color mode .
Kojto 93:e188a91d3eaa 119 This parameter can be one value of @ref DMA2D_Input_Color_Mode */
Kojto 93:e188a91d3eaa 120
Kojto 93:e188a91d3eaa 121 uint32_t AlphaMode; /*!< configures the DMA2D foreground alpha mode.
Kojto 93:e188a91d3eaa 122 This parameter can be one value of @ref DMA2D_ALPHA_MODE */
Kojto 93:e188a91d3eaa 123
Kojto 93:e188a91d3eaa 124 uint32_t InputAlpha; /*!< Specifies the DMA2D foreground alpha value and color value in case of A8 or A4 color mode.
Kojto 93:e188a91d3eaa 125 This parameter must be a number between Min_Data = 0x00000000 and Max_Data = 0xFFFFFFFF
Kojto 93:e188a91d3eaa 126 in case of A8 or A4 color mode (ARGB).
Kojto 93:e188a91d3eaa 127 Otherwise, This parameter must be a number between Min_Data = 0x00 and Max_Data = 0xFF.*/
Kojto 93:e188a91d3eaa 128
Kojto 93:e188a91d3eaa 129 } DMA2D_LayerCfgTypeDef;
Kojto 93:e188a91d3eaa 130
Kojto 93:e188a91d3eaa 131 /**
Kojto 93:e188a91d3eaa 132 * @brief HAL DMA2D State structures definition
Kojto 93:e188a91d3eaa 133 */
Kojto 93:e188a91d3eaa 134 typedef enum
Kojto 93:e188a91d3eaa 135 {
Kojto 93:e188a91d3eaa 136 HAL_DMA2D_STATE_RESET = 0x00, /*!< DMA2D not yet initialized or disabled */
Kojto 93:e188a91d3eaa 137 HAL_DMA2D_STATE_READY = 0x01, /*!< Peripheral Initialized and ready for use */
Kojto 93:e188a91d3eaa 138 HAL_DMA2D_STATE_BUSY = 0x02, /*!< an internal process is ongoing */
Kojto 93:e188a91d3eaa 139 HAL_DMA2D_STATE_TIMEOUT = 0x03, /*!< Timeout state */
Kojto 93:e188a91d3eaa 140 HAL_DMA2D_STATE_ERROR = 0x04, /*!< DMA2D state error */
Kojto 93:e188a91d3eaa 141 HAL_DMA2D_STATE_SUSPEND = 0x05 /*!< DMA2D process is suspended */
Kojto 93:e188a91d3eaa 142 }HAL_DMA2D_StateTypeDef;
Kojto 93:e188a91d3eaa 143
Kojto 93:e188a91d3eaa 144 /**
Kojto 93:e188a91d3eaa 145 * @brief DMA2D handle Structure definition
Kojto 93:e188a91d3eaa 146 */
Kojto 93:e188a91d3eaa 147 typedef struct __DMA2D_HandleTypeDef
Kojto 93:e188a91d3eaa 148 {
Kojto 93:e188a91d3eaa 149 DMA2D_TypeDef *Instance; /*!< DMA2D Register base address */
Kojto 93:e188a91d3eaa 150
Kojto 93:e188a91d3eaa 151 DMA2D_InitTypeDef Init; /*!< DMA2D communication parameters */
Kojto 93:e188a91d3eaa 152
Kojto 93:e188a91d3eaa 153 void (* XferCpltCallback)(struct __DMA2D_HandleTypeDef * hdma2d); /*!< DMA2D transfer complete callback */
Kojto 93:e188a91d3eaa 154
Kojto 93:e188a91d3eaa 155 void (* XferErrorCallback)(struct __DMA2D_HandleTypeDef * hdma2d); /*!< DMA2D transfer error callback */
Kojto 93:e188a91d3eaa 156
Kojto 93:e188a91d3eaa 157 DMA2D_LayerCfgTypeDef LayerCfg[MAX_DMA2D_LAYER]; /*!< DMA2D Layers parameters */
Kojto 93:e188a91d3eaa 158
Kojto 93:e188a91d3eaa 159 HAL_LockTypeDef Lock; /*!< DMA2D Lock */
Kojto 93:e188a91d3eaa 160
Kojto 93:e188a91d3eaa 161 __IO HAL_DMA2D_StateTypeDef State; /*!< DMA2D transfer state */
Kojto 93:e188a91d3eaa 162
Kojto 93:e188a91d3eaa 163 __IO uint32_t ErrorCode; /*!< DMA2D Error code */
Kojto 93:e188a91d3eaa 164 } DMA2D_HandleTypeDef;
Kojto 93:e188a91d3eaa 165 /**
Kojto 93:e188a91d3eaa 166 * @}
Kojto 93:e188a91d3eaa 167 */
Kojto 93:e188a91d3eaa 168
Kojto 99:dbbf35b96557 169 /* Exported constants --------------------------------------------------------*/
Kojto 99:dbbf35b96557 170 /** @defgroup DMA2D_Exported_Constants DMA2D Exported Constants
Kojto 99:dbbf35b96557 171 * @{
Kojto 99:dbbf35b96557 172 */
Kojto 99:dbbf35b96557 173
Kojto 99:dbbf35b96557 174 /** @defgroup DMA2D_Error_Code DMA2D Error Code
Kojto 93:e188a91d3eaa 175 * @{
Kojto 93:e188a91d3eaa 176 */
Kojto 93:e188a91d3eaa 177 #define HAL_DMA2D_ERROR_NONE ((uint32_t)0x00000000) /*!< No error */
Kojto 93:e188a91d3eaa 178 #define HAL_DMA2D_ERROR_TE ((uint32_t)0x00000001) /*!< Transfer error */
Kojto 93:e188a91d3eaa 179 #define HAL_DMA2D_ERROR_CE ((uint32_t)0x00000002) /*!< Configuration error */
Kojto 93:e188a91d3eaa 180 #define HAL_DMA2D_ERROR_TIMEOUT ((uint32_t)0x00000020) /*!< Timeout error */
Kojto 93:e188a91d3eaa 181 /**
Kojto 93:e188a91d3eaa 182 * @}
Kojto 93:e188a91d3eaa 183 */
Kojto 93:e188a91d3eaa 184
Kojto 99:dbbf35b96557 185 /** @defgroup DMA2D_Mode DMA2D Mode
Kojto 93:e188a91d3eaa 186 * @{
Kojto 93:e188a91d3eaa 187 */
Kojto 93:e188a91d3eaa 188 #define DMA2D_M2M ((uint32_t)0x00000000) /*!< DMA2D memory to memory transfer mode */
Kojto 93:e188a91d3eaa 189 #define DMA2D_M2M_PFC ((uint32_t)0x00010000) /*!< DMA2D memory to memory with pixel format conversion transfer mode */
Kojto 93:e188a91d3eaa 190 #define DMA2D_M2M_BLEND ((uint32_t)0x00020000) /*!< DMA2D memory to memory with blending transfer mode */
Kojto 93:e188a91d3eaa 191 #define DMA2D_R2M ((uint32_t)0x00030000) /*!< DMA2D register to memory transfer mode */
Kojto 93:e188a91d3eaa 192 /**
Kojto 93:e188a91d3eaa 193 * @}
Kojto 93:e188a91d3eaa 194 */
Kojto 93:e188a91d3eaa 195
Kojto 99:dbbf35b96557 196 /** @defgroup DMA2D_Color_Mode DMA2D Color Mode
Kojto 93:e188a91d3eaa 197 * @{
Kojto 93:e188a91d3eaa 198 */
Kojto 93:e188a91d3eaa 199 #define DMA2D_ARGB8888 ((uint32_t)0x00000000) /*!< ARGB8888 DMA2D color mode */
Kojto 93:e188a91d3eaa 200 #define DMA2D_RGB888 ((uint32_t)0x00000001) /*!< RGB888 DMA2D color mode */
Kojto 93:e188a91d3eaa 201 #define DMA2D_RGB565 ((uint32_t)0x00000002) /*!< RGB565 DMA2D color mode */
Kojto 93:e188a91d3eaa 202 #define DMA2D_ARGB1555 ((uint32_t)0x00000003) /*!< ARGB1555 DMA2D color mode */
Kojto 93:e188a91d3eaa 203 #define DMA2D_ARGB4444 ((uint32_t)0x00000004) /*!< ARGB4444 DMA2D color mode */
Kojto 93:e188a91d3eaa 204 /**
Kojto 93:e188a91d3eaa 205 * @}
Kojto 93:e188a91d3eaa 206 */
Kojto 93:e188a91d3eaa 207
Kojto 99:dbbf35b96557 208 /** @defgroup DMA2D_COLOR_VALUE DMA2D COLOR VALUE
Kojto 93:e188a91d3eaa 209 * @{
Kojto 93:e188a91d3eaa 210 */
Kojto 93:e188a91d3eaa 211 #define COLOR_VALUE ((uint32_t)0x000000FF) /*!< color value mask */
Kojto 93:e188a91d3eaa 212 /**
Kojto 93:e188a91d3eaa 213 * @}
Kojto 93:e188a91d3eaa 214 */
Kojto 93:e188a91d3eaa 215
Kojto 99:dbbf35b96557 216 /** @defgroup DMA2D_SIZE DMA2D SIZE
Kojto 93:e188a91d3eaa 217 * @{
Kojto 93:e188a91d3eaa 218 */
Kojto 93:e188a91d3eaa 219 #define DMA2D_PIXEL (DMA2D_NLR_PL >> 16) /*!< DMA2D pixel per line */
Kojto 93:e188a91d3eaa 220 #define DMA2D_LINE DMA2D_NLR_NL /*!< DMA2D number of line */
Kojto 93:e188a91d3eaa 221 /**
Kojto 93:e188a91d3eaa 222 * @}
Kojto 93:e188a91d3eaa 223 */
Kojto 93:e188a91d3eaa 224
Kojto 99:dbbf35b96557 225 /** @defgroup DMA2D_Offset DMA2D Offset
Kojto 93:e188a91d3eaa 226 * @{
Kojto 93:e188a91d3eaa 227 */
Kojto 93:e188a91d3eaa 228 #define DMA2D_OFFSET DMA2D_FGOR_LO /*!< Line Offset */
Kojto 93:e188a91d3eaa 229 /**
Kojto 93:e188a91d3eaa 230 * @}
Kojto 93:e188a91d3eaa 231 */
Kojto 93:e188a91d3eaa 232
Kojto 99:dbbf35b96557 233 /** @defgroup DMA2D_Input_Color_Mode DMA2D Input Color Mode
Kojto 93:e188a91d3eaa 234 * @{
Kojto 93:e188a91d3eaa 235 */
Kojto 93:e188a91d3eaa 236 #define CM_ARGB8888 ((uint32_t)0x00000000) /*!< ARGB8888 color mode */
Kojto 93:e188a91d3eaa 237 #define CM_RGB888 ((uint32_t)0x00000001) /*!< RGB888 color mode */
Kojto 93:e188a91d3eaa 238 #define CM_RGB565 ((uint32_t)0x00000002) /*!< RGB565 color mode */
Kojto 93:e188a91d3eaa 239 #define CM_ARGB1555 ((uint32_t)0x00000003) /*!< ARGB1555 color mode */
Kojto 93:e188a91d3eaa 240 #define CM_ARGB4444 ((uint32_t)0x00000004) /*!< ARGB4444 color mode */
Kojto 93:e188a91d3eaa 241 #define CM_L8 ((uint32_t)0x00000005) /*!< L8 color mode */
Kojto 93:e188a91d3eaa 242 #define CM_AL44 ((uint32_t)0x00000006) /*!< AL44 color mode */
Kojto 93:e188a91d3eaa 243 #define CM_AL88 ((uint32_t)0x00000007) /*!< AL88 color mode */
Kojto 93:e188a91d3eaa 244 #define CM_L4 ((uint32_t)0x00000008) /*!< L4 color mode */
Kojto 93:e188a91d3eaa 245 #define CM_A8 ((uint32_t)0x00000009) /*!< A8 color mode */
Kojto 93:e188a91d3eaa 246 #define CM_A4 ((uint32_t)0x0000000A) /*!< A4 color mode */
Kojto 93:e188a91d3eaa 247 /**
Kojto 93:e188a91d3eaa 248 * @}
Kojto 93:e188a91d3eaa 249 */
Kojto 93:e188a91d3eaa 250
Kojto 99:dbbf35b96557 251 /** @defgroup DMA2D_ALPHA_MODE DMA2D ALPHA MODE
Kojto 93:e188a91d3eaa 252 * @{
Kojto 93:e188a91d3eaa 253 */
Kojto 93:e188a91d3eaa 254 #define DMA2D_NO_MODIF_ALPHA ((uint32_t)0x00000000) /*!< No modification of the alpha channel value */
Kojto 93:e188a91d3eaa 255 #define DMA2D_REPLACE_ALPHA ((uint32_t)0x00000001) /*!< Replace original alpha channel value by programmed alpha value */
Kojto 93:e188a91d3eaa 256 #define DMA2D_COMBINE_ALPHA ((uint32_t)0x00000002) /*!< Replace original alpha channel value by programmed alpha value
Kojto 93:e188a91d3eaa 257 with original alpha channel value */
Kojto 93:e188a91d3eaa 258 /**
Kojto 93:e188a91d3eaa 259 * @}
Kojto 93:e188a91d3eaa 260 */
Kojto 93:e188a91d3eaa 261
Kojto 99:dbbf35b96557 262 /** @defgroup DMA2D_CLUT_CM DMA2D CLUT CM
Kojto 93:e188a91d3eaa 263 * @{
Kojto 93:e188a91d3eaa 264 */
Kojto 93:e188a91d3eaa 265 #define DMA2D_CCM_ARGB8888 ((uint32_t)0x00000000) /*!< ARGB8888 DMA2D C-LUT color mode */
Kojto 93:e188a91d3eaa 266 #define DMA2D_CCM_RGB888 ((uint32_t)0x00000001) /*!< RGB888 DMA2D C-LUT color mode */
Kojto 93:e188a91d3eaa 267 /**
Kojto 93:e188a91d3eaa 268 * @}
Kojto 93:e188a91d3eaa 269 */
Kojto 93:e188a91d3eaa 270
Kojto 99:dbbf35b96557 271 /** @defgroup DMA2D_Size_Clut DMA2D Size Clut
Kojto 93:e188a91d3eaa 272 * @{
Kojto 93:e188a91d3eaa 273 */
Kojto 93:e188a91d3eaa 274 #define DMA2D_CLUT_SIZE (DMA2D_FGPFCCR_CS >> 8) /*!< DMA2D C-LUT size */
Kojto 93:e188a91d3eaa 275 /**
Kojto 93:e188a91d3eaa 276 * @}
Kojto 93:e188a91d3eaa 277 */
Kojto 93:e188a91d3eaa 278
Kojto 99:dbbf35b96557 279 /** @defgroup DMA2D_DeadTime DMA2D DeadTime
Kojto 93:e188a91d3eaa 280 * @{
Kojto 93:e188a91d3eaa 281 */
Kojto 93:e188a91d3eaa 282 #define LINE_WATERMARK DMA2D_LWR_LW
Kojto 93:e188a91d3eaa 283 /**
Kojto 93:e188a91d3eaa 284 * @}
Kojto 93:e188a91d3eaa 285 */
Kojto 93:e188a91d3eaa 286
Kojto 99:dbbf35b96557 287 /** @defgroup DMA2D_Interrupts DMA2D Interrupts
Kojto 93:e188a91d3eaa 288 * @{
Kojto 93:e188a91d3eaa 289 */
Kojto 93:e188a91d3eaa 290 #define DMA2D_IT_CE DMA2D_CR_CEIE /*!< Configuration Error Interrupt */
Kojto 93:e188a91d3eaa 291 #define DMA2D_IT_CTC DMA2D_CR_CTCIE /*!< C-LUT Transfer Complete Interrupt */
Kojto 93:e188a91d3eaa 292 #define DMA2D_IT_CAE DMA2D_CR_CAEIE /*!< C-LUT Access Error Interrupt */
Kojto 93:e188a91d3eaa 293 #define DMA2D_IT_TW DMA2D_CR_TWIE /*!< Transfer Watermark Interrupt */
Kojto 93:e188a91d3eaa 294 #define DMA2D_IT_TC DMA2D_CR_TCIE /*!< Transfer Complete Interrupt */
Kojto 93:e188a91d3eaa 295 #define DMA2D_IT_TE DMA2D_CR_TEIE /*!< Transfer Error Interrupt */
Kojto 93:e188a91d3eaa 296 /**
Kojto 93:e188a91d3eaa 297 * @}
Kojto 93:e188a91d3eaa 298 */
Kojto 93:e188a91d3eaa 299
Kojto 99:dbbf35b96557 300 /** @defgroup DMA2D_Flag DMA2D Flag
Kojto 93:e188a91d3eaa 301 * @{
Kojto 93:e188a91d3eaa 302 */
Kojto 93:e188a91d3eaa 303 #define DMA2D_FLAG_CE DMA2D_ISR_CEIF /*!< Configuration Error Interrupt Flag */
Kojto 93:e188a91d3eaa 304 #define DMA2D_FLAG_CTC DMA2D_ISR_CTCIF /*!< C-LUT Transfer Complete Interrupt Flag */
Kojto 93:e188a91d3eaa 305 #define DMA2D_FLAG_CAE DMA2D_ISR_CAEIF /*!< C-LUT Access Error Interrupt Flag */
Kojto 93:e188a91d3eaa 306 #define DMA2D_FLAG_TW DMA2D_ISR_TWIF /*!< Transfer Watermark Interrupt Flag */
Kojto 93:e188a91d3eaa 307 #define DMA2D_FLAG_TC DMA2D_ISR_TCIF /*!< Transfer Complete Interrupt Flag */
Kojto 93:e188a91d3eaa 308 #define DMA2D_FLAG_TE DMA2D_ISR_TEIF /*!< Transfer Error Interrupt Flag */
Kojto 93:e188a91d3eaa 309 /**
Kojto 93:e188a91d3eaa 310 * @}
Kojto 93:e188a91d3eaa 311 */
Kojto 93:e188a91d3eaa 312
Kojto 93:e188a91d3eaa 313 /**
Kojto 93:e188a91d3eaa 314 * @}
Kojto 93:e188a91d3eaa 315 */
Kojto 93:e188a91d3eaa 316 /* Exported macro ------------------------------------------------------------*/
Kojto 99:dbbf35b96557 317 /** @defgroup DMA2D_Exported_Macros DMA2D Exported Macros
Kojto 99:dbbf35b96557 318 * @{
Kojto 99:dbbf35b96557 319 */
Kojto 93:e188a91d3eaa 320
Kojto 93:e188a91d3eaa 321 /** @brief Reset DMA2D handle state
Kojto 93:e188a91d3eaa 322 * @param __HANDLE__: specifies the DMA2D handle.
Kojto 93:e188a91d3eaa 323 * @retval None
Kojto 93:e188a91d3eaa 324 */
Kojto 93:e188a91d3eaa 325 #define __HAL_DMA2D_RESET_HANDLE_STATE(__HANDLE__) ((__HANDLE__)->State = HAL_DMA2D_STATE_RESET)
Kojto 93:e188a91d3eaa 326
Kojto 93:e188a91d3eaa 327 /**
Kojto 93:e188a91d3eaa 328 * @brief Enable the DMA2D.
Kojto 93:e188a91d3eaa 329 * @param __HANDLE__: DMA2D handle
Kojto 93:e188a91d3eaa 330 * @retval None.
Kojto 93:e188a91d3eaa 331 */
Kojto 93:e188a91d3eaa 332 #define __HAL_DMA2D_ENABLE(__HANDLE__) ((__HANDLE__)->Instance->CR |= DMA2D_CR_START)
Kojto 93:e188a91d3eaa 333
Kojto 93:e188a91d3eaa 334 /**
Kojto 93:e188a91d3eaa 335 * @brief Disable the DMA2D.
Kojto 93:e188a91d3eaa 336 * @param __HANDLE__: DMA2D handle
Kojto 93:e188a91d3eaa 337 * @retval None.
Kojto 93:e188a91d3eaa 338 */
Kojto 93:e188a91d3eaa 339 #define __HAL_DMA2D_DISABLE(__HANDLE__) ((__HANDLE__)->Instance->CR &= ~DMA2D_CR_START)
Kojto 93:e188a91d3eaa 340
Kojto 93:e188a91d3eaa 341 /* Interrupt & Flag management */
Kojto 93:e188a91d3eaa 342 /**
Kojto 93:e188a91d3eaa 343 * @brief Get the DMA2D pending flags.
Kojto 93:e188a91d3eaa 344 * @param __HANDLE__: DMA2D handle
Kojto 93:e188a91d3eaa 345 * @param __FLAG__: Get the specified flag.
Kojto 93:e188a91d3eaa 346 * This parameter can be any combination of the following values:
Kojto 93:e188a91d3eaa 347 * @arg DMA2D_FLAG_CE: Configuration error flag
Kojto 93:e188a91d3eaa 348 * @arg DMA2D_FLAG_CTC: C-LUT transfer complete flag
Kojto 93:e188a91d3eaa 349 * @arg DMA2D_FLAG_CAE: C-LUT access error flag
Kojto 93:e188a91d3eaa 350 * @arg DMA2D_FLAG_TW: Transfer Watermark flag
Kojto 93:e188a91d3eaa 351 * @arg DMA2D_FLAG_TC: Transfer complete flag
Kojto 93:e188a91d3eaa 352 * @arg DMA2D_FLAG_TE: Transfer error flag
Kojto 93:e188a91d3eaa 353 * @retval The state of FLAG.
Kojto 93:e188a91d3eaa 354 */
Kojto 93:e188a91d3eaa 355 #define __HAL_DMA2D_GET_FLAG(__HANDLE__, __FLAG__) ((__HANDLE__)->Instance->ISR & (__FLAG__))
Kojto 93:e188a91d3eaa 356
Kojto 93:e188a91d3eaa 357 /**
Kojto 93:e188a91d3eaa 358 * @brief Clears the DMA2D pending flags.
Kojto 93:e188a91d3eaa 359 * @param __HANDLE__: DMA2D handle
Kojto 93:e188a91d3eaa 360 * @param __FLAG__: specifies the flag to clear.
Kojto 93:e188a91d3eaa 361 * This parameter can be any combination of the following values:
Kojto 93:e188a91d3eaa 362 * @arg DMA2D_FLAG_CE: Configuration error flag
Kojto 93:e188a91d3eaa 363 * @arg DMA2D_FLAG_CTC: C-LUT transfer complete flag
Kojto 93:e188a91d3eaa 364 * @arg DMA2D_FLAG_CAE: C-LUT access error flag
Kojto 93:e188a91d3eaa 365 * @arg DMA2D_FLAG_TW: Transfer Watermark flag
Kojto 93:e188a91d3eaa 366 * @arg DMA2D_FLAG_TC: Transfer complete flag
Kojto 93:e188a91d3eaa 367 * @arg DMA2D_FLAG_TE: Transfer error flag
Kojto 93:e188a91d3eaa 368 * @retval None
Kojto 93:e188a91d3eaa 369 */
Kojto 93:e188a91d3eaa 370 #define __HAL_DMA2D_CLEAR_FLAG(__HANDLE__, __FLAG__) ((__HANDLE__)->Instance->IFCR = (__FLAG__))
Kojto 93:e188a91d3eaa 371
Kojto 93:e188a91d3eaa 372 /**
Kojto 93:e188a91d3eaa 373 * @brief Enables the specified DMA2D interrupts.
Kojto 93:e188a91d3eaa 374 * @param __HANDLE__: DMA2D handle
Kojto 93:e188a91d3eaa 375 * @param __INTERRUPT__: specifies the DMA2D interrupt sources to be enabled.
Kojto 93:e188a91d3eaa 376 * This parameter can be any combination of the following values:
Kojto 93:e188a91d3eaa 377 * @arg DMA2D_IT_CE: Configuration error interrupt mask
Kojto 93:e188a91d3eaa 378 * @arg DMA2D_IT_CTC: C-LUT transfer complete interrupt mask
Kojto 93:e188a91d3eaa 379 * @arg DMA2D_IT_CAE: C-LUT access error interrupt mask
Kojto 93:e188a91d3eaa 380 * @arg DMA2D_IT_TW: Transfer Watermark interrupt mask
Kojto 93:e188a91d3eaa 381 * @arg DMA2D_IT_TC: Transfer complete interrupt mask
Kojto 93:e188a91d3eaa 382 * @arg DMA2D_IT_TE: Transfer error interrupt mask
Kojto 93:e188a91d3eaa 383 * @retval None
Kojto 93:e188a91d3eaa 384 */
Kojto 93:e188a91d3eaa 385 #define __HAL_DMA2D_ENABLE_IT(__HANDLE__, __INTERRUPT__) ((__HANDLE__)->Instance->CR |= (__INTERRUPT__))
Kojto 93:e188a91d3eaa 386
Kojto 93:e188a91d3eaa 387 /**
Kojto 93:e188a91d3eaa 388 * @brief Disables the specified DMA2D interrupts.
Kojto 93:e188a91d3eaa 389 * @param __HANDLE__: DMA2D handle
Kojto 93:e188a91d3eaa 390 * @param __INTERRUPT__: specifies the DMA2D interrupt sources to be disabled.
Kojto 93:e188a91d3eaa 391 * This parameter can be any combination of the following values:
Kojto 93:e188a91d3eaa 392 * @arg DMA2D_IT_CE: Configuration error interrupt mask
Kojto 93:e188a91d3eaa 393 * @arg DMA2D_IT_CTC: C-LUT transfer complete interrupt mask
Kojto 93:e188a91d3eaa 394 * @arg DMA2D_IT_CAE: C-LUT access error interrupt mask
Kojto 93:e188a91d3eaa 395 * @arg DMA2D_IT_TW: Transfer Watermark interrupt mask
Kojto 93:e188a91d3eaa 396 * @arg DMA2D_IT_TC: Transfer complete interrupt mask
Kojto 93:e188a91d3eaa 397 * @arg DMA2D_IT_TE: Transfer error interrupt mask
Kojto 93:e188a91d3eaa 398 * @retval None
Kojto 93:e188a91d3eaa 399 */
Kojto 93:e188a91d3eaa 400 #define __HAL_DMA2D_DISABLE_IT(__HANDLE__, __INTERRUPT__) ((__HANDLE__)->Instance->CR &= ~(__INTERRUPT__))
Kojto 93:e188a91d3eaa 401
Kojto 93:e188a91d3eaa 402 /**
Kojto 93:e188a91d3eaa 403 * @brief Checks whether the specified DMA2D interrupt has occurred or not.
Kojto 93:e188a91d3eaa 404 * @param __HANDLE__: DMA2D handle
Kojto 93:e188a91d3eaa 405 * @param __INTERRUPT__: specifies the DMA2D interrupt source to check.
Kojto 93:e188a91d3eaa 406 * This parameter can be one of the following values:
Kojto 93:e188a91d3eaa 407 * @arg DMA2D_IT_CE: Configuration error interrupt mask
Kojto 93:e188a91d3eaa 408 * @arg DMA2D_IT_CTC: C-LUT transfer complete interrupt mask
Kojto 93:e188a91d3eaa 409 * @arg DMA2D_IT_CAE: C-LUT access error interrupt mask
Kojto 93:e188a91d3eaa 410 * @arg DMA2D_IT_TW: Transfer Watermark interrupt mask
Kojto 93:e188a91d3eaa 411 * @arg DMA2D_IT_TC: Transfer complete interrupt mask
Kojto 93:e188a91d3eaa 412 * @arg DMA2D_IT_TE: Transfer error interrupt mask
Kojto 93:e188a91d3eaa 413 * @retval The state of INTERRUPT.
Kojto 93:e188a91d3eaa 414 */
Kojto 93:e188a91d3eaa 415 #define __HAL_DMA2D_GET_IT_SOURCE(__HANDLE__, __INTERRUPT__) ((__HANDLE__)->Instance->CR & (__INTERRUPT__))
Kojto 99:dbbf35b96557 416 /**
Kojto 99:dbbf35b96557 417 * @}
Kojto 99:dbbf35b96557 418 */
Kojto 93:e188a91d3eaa 419
Kojto 93:e188a91d3eaa 420 /* Exported functions --------------------------------------------------------*/
Kojto 99:dbbf35b96557 421 /** @defgroup DMA2D_Exported_Functions DMA2D Exported Functions
Kojto 99:dbbf35b96557 422 * @{
Kojto 99:dbbf35b96557 423 */
Kojto 93:e188a91d3eaa 424 /* Initialization and de-initialization functions *******************************/
Kojto 93:e188a91d3eaa 425 HAL_StatusTypeDef HAL_DMA2D_Init(DMA2D_HandleTypeDef *hdma2d);
Kojto 93:e188a91d3eaa 426 HAL_StatusTypeDef HAL_DMA2D_DeInit (DMA2D_HandleTypeDef *hdma2d);
Kojto 93:e188a91d3eaa 427 void HAL_DMA2D_MspInit(DMA2D_HandleTypeDef* hdma2d);
Kojto 93:e188a91d3eaa 428 void HAL_DMA2D_MspDeInit(DMA2D_HandleTypeDef* hdma2d);
Kojto 93:e188a91d3eaa 429
Kojto 93:e188a91d3eaa 430 /* IO operation functions *******************************************************/
Kojto 99:dbbf35b96557 431 HAL_StatusTypeDef HAL_DMA2D_Start(DMA2D_HandleTypeDef *hdma2d, uint32_t pdata, uint32_t DstAddress, uint32_t Width, uint32_t Height);
Kojto 99:dbbf35b96557 432 HAL_StatusTypeDef HAL_DMA2D_BlendingStart(DMA2D_HandleTypeDef *hdma2d, uint32_t SrcAddress1, uint32_t SrcAddress2, uint32_t DstAddress, uint32_t Width, uint32_t Height);
Kojto 99:dbbf35b96557 433 HAL_StatusTypeDef HAL_DMA2D_Start_IT(DMA2D_HandleTypeDef *hdma2d, uint32_t pdata, uint32_t DstAddress, uint32_t Width, uint32_t Height);
Kojto 99:dbbf35b96557 434 HAL_StatusTypeDef HAL_DMA2D_BlendingStart_IT(DMA2D_HandleTypeDef *hdma2d, uint32_t SrcAddress1, uint32_t SrcAddress2, uint32_t DstAddress, uint32_t Width, uint32_t Height);
Kojto 93:e188a91d3eaa 435 HAL_StatusTypeDef HAL_DMA2D_Suspend(DMA2D_HandleTypeDef *hdma2d);
Kojto 93:e188a91d3eaa 436 HAL_StatusTypeDef HAL_DMA2D_Resume(DMA2D_HandleTypeDef *hdma2d);
Kojto 93:e188a91d3eaa 437 HAL_StatusTypeDef HAL_DMA2D_Abort(DMA2D_HandleTypeDef *hdma2d);
Kojto 93:e188a91d3eaa 438 HAL_StatusTypeDef HAL_DMA2D_PollForTransfer(DMA2D_HandleTypeDef *hdma2d, uint32_t Timeout);
Kojto 93:e188a91d3eaa 439 void HAL_DMA2D_IRQHandler(DMA2D_HandleTypeDef *hdma2d);
Kojto 93:e188a91d3eaa 440
Kojto 93:e188a91d3eaa 441 /* Peripheral Control functions *************************************************/
Kojto 93:e188a91d3eaa 442 HAL_StatusTypeDef HAL_DMA2D_ConfigLayer(DMA2D_HandleTypeDef *hdma2d, uint32_t LayerIdx);
Kojto 93:e188a91d3eaa 443 HAL_StatusTypeDef HAL_DMA2D_ConfigCLUT(DMA2D_HandleTypeDef *hdma2d, DMA2D_CLUTCfgTypeDef CLUTCfg, uint32_t LayerIdx);
Kojto 93:e188a91d3eaa 444 HAL_StatusTypeDef HAL_DMA2D_EnableCLUT(DMA2D_HandleTypeDef *hdma2d, uint32_t LayerIdx);
Kojto 93:e188a91d3eaa 445 HAL_StatusTypeDef HAL_DMA2D_DisableCLUT(DMA2D_HandleTypeDef *hdma2d, uint32_t LayerIdx);
Kojto 93:e188a91d3eaa 446 HAL_StatusTypeDef HAL_DMA2D_ProgramLineEvent(DMA2D_HandleTypeDef *hdma2d, uint32_t Line);
Kojto 93:e188a91d3eaa 447
Kojto 93:e188a91d3eaa 448 /* Peripheral State functions ***************************************************/
Kojto 93:e188a91d3eaa 449 HAL_DMA2D_StateTypeDef HAL_DMA2D_GetState(DMA2D_HandleTypeDef *hdma2d);
Kojto 93:e188a91d3eaa 450 uint32_t HAL_DMA2D_GetError(DMA2D_HandleTypeDef *hdma2d);
Kojto 99:dbbf35b96557 451 /**
Kojto 99:dbbf35b96557 452 * @}
Kojto 99:dbbf35b96557 453 */
Kojto 93:e188a91d3eaa 454
Kojto 99:dbbf35b96557 455 /* Private types -------------------------------------------------------------*/
Kojto 99:dbbf35b96557 456 /** @defgroup DMA2D_Private_Types DMA2D Private Types
Kojto 99:dbbf35b96557 457 * @{
Kojto 99:dbbf35b96557 458 */
Kojto 99:dbbf35b96557 459
Kojto 99:dbbf35b96557 460 /**
Kojto 99:dbbf35b96557 461 * @}
Kojto 99:dbbf35b96557 462 */
Kojto 99:dbbf35b96557 463
Kojto 99:dbbf35b96557 464 /* Private defines -------------------------------------------------------------*/
Kojto 99:dbbf35b96557 465 /** @defgroup DMA2D_Private_Defines DMA2D Private Defines
Kojto 99:dbbf35b96557 466 * @{
Kojto 99:dbbf35b96557 467 */
Kojto 99:dbbf35b96557 468
Kojto 99:dbbf35b96557 469 /**
Kojto 99:dbbf35b96557 470 * @}
Kojto 99:dbbf35b96557 471 */
Kojto 99:dbbf35b96557 472
Kojto 99:dbbf35b96557 473 /* Private variables ---------------------------------------------------------*/
Kojto 99:dbbf35b96557 474 /** @defgroup DMA2D_Private_Variables DMA2D Private Variables
Kojto 99:dbbf35b96557 475 * @{
Kojto 99:dbbf35b96557 476 */
Kojto 99:dbbf35b96557 477
Kojto 99:dbbf35b96557 478 /**
Kojto 99:dbbf35b96557 479 * @}
Kojto 99:dbbf35b96557 480 */
Kojto 99:dbbf35b96557 481
Kojto 99:dbbf35b96557 482 /* Private constants ---------------------------------------------------------*/
Kojto 99:dbbf35b96557 483 /** @defgroup DMA2D_Private_Constants DMA2D Private Constants
Kojto 99:dbbf35b96557 484 * @{
Kojto 99:dbbf35b96557 485 */
Kojto 99:dbbf35b96557 486
Kojto 99:dbbf35b96557 487 /**
Kojto 99:dbbf35b96557 488 * @}
Kojto 99:dbbf35b96557 489 */
Kojto 99:dbbf35b96557 490
Kojto 99:dbbf35b96557 491 /* Private macros ------------------------------------------------------------*/
Kojto 99:dbbf35b96557 492 /** @defgroup DMA2D_Private_Macros DMA2D Private Macros
Kojto 99:dbbf35b96557 493 * @{
Kojto 99:dbbf35b96557 494 */
Kojto 99:dbbf35b96557 495 #define IS_DMA2D_LAYER(LAYER) ((LAYER) <= MAX_DMA2D_LAYER)
Kojto 99:dbbf35b96557 496 #define IS_DMA2D_MODE(MODE) (((MODE) == DMA2D_M2M) || ((MODE) == DMA2D_M2M_PFC) || \
Kojto 99:dbbf35b96557 497 ((MODE) == DMA2D_M2M_BLEND) || ((MODE) == DMA2D_R2M))
Kojto 99:dbbf35b96557 498 #define IS_DMA2D_CMODE(MODE_ARGB) (((MODE_ARGB) == DMA2D_ARGB8888) || ((MODE_ARGB) == DMA2D_RGB888) || \
Kojto 99:dbbf35b96557 499 ((MODE_ARGB) == DMA2D_RGB565) || ((MODE_ARGB) == DMA2D_ARGB1555) || \
Kojto 99:dbbf35b96557 500 ((MODE_ARGB) == DMA2D_ARGB4444))
Kojto 99:dbbf35b96557 501 #define IS_DMA2D_COLOR(COLOR) ((COLOR) <= COLOR_VALUE)
Kojto 99:dbbf35b96557 502 #define IS_DMA2D_LINE(LINE) ((LINE) <= DMA2D_LINE)
Kojto 99:dbbf35b96557 503 #define IS_DMA2D_PIXEL(PIXEL) ((PIXEL) <= DMA2D_PIXEL)
Kojto 99:dbbf35b96557 504 #define IS_DMA2D_OFFSET(OOFFSET) ((OOFFSET) <= DMA2D_OFFSET)
Kojto 99:dbbf35b96557 505 #define IS_DMA2D_INPUT_COLOR_MODE(INPUT_CM) (((INPUT_CM) == CM_ARGB8888) || ((INPUT_CM) == CM_RGB888) || \
Kojto 99:dbbf35b96557 506 ((INPUT_CM) == CM_RGB565) || ((INPUT_CM) == CM_ARGB1555) || \
Kojto 99:dbbf35b96557 507 ((INPUT_CM) == CM_ARGB4444) || ((INPUT_CM) == CM_L8) || \
Kojto 99:dbbf35b96557 508 ((INPUT_CM) == CM_AL44) || ((INPUT_CM) == CM_AL88) || \
Kojto 99:dbbf35b96557 509 ((INPUT_CM) == CM_L4) || ((INPUT_CM) == CM_A8) || \
Kojto 99:dbbf35b96557 510 ((INPUT_CM) == CM_A4))
Kojto 99:dbbf35b96557 511 #define IS_DMA2D_ALPHA_MODE(AlphaMode) (((AlphaMode) == DMA2D_NO_MODIF_ALPHA) || \
Kojto 99:dbbf35b96557 512 ((AlphaMode) == DMA2D_REPLACE_ALPHA) || \
Kojto 99:dbbf35b96557 513 ((AlphaMode) == DMA2D_COMBINE_ALPHA))
Kojto 99:dbbf35b96557 514 #define IS_DMA2D_CLUT_CM(CLUT_CM) (((CLUT_CM) == DMA2D_CCM_ARGB8888) || ((CLUT_CM) == DMA2D_CCM_RGB888))
Kojto 99:dbbf35b96557 515 #define IS_DMA2D_CLUT_SIZE(CLUT_SIZE) ((CLUT_SIZE) <= DMA2D_CLUT_SIZE)
Kojto 99:dbbf35b96557 516 #define IS_DMA2D_LineWatermark(LineWatermark) ((LineWatermark) <= LINE_WATERMARK)
Kojto 99:dbbf35b96557 517 /**
Kojto 99:dbbf35b96557 518 * @}
Kojto 99:dbbf35b96557 519 */
Kojto 99:dbbf35b96557 520
Kojto 99:dbbf35b96557 521 /* Private functions prototypes ---------------------------------------------------------*/
Kojto 99:dbbf35b96557 522 /** @defgroup DMA2D_Private_Functions_Prototypes DMA2D Private Functions Prototypes
Kojto 99:dbbf35b96557 523 * @{
Kojto 99:dbbf35b96557 524 */
Kojto 99:dbbf35b96557 525
Kojto 99:dbbf35b96557 526 /**
Kojto 99:dbbf35b96557 527 * @}
Kojto 99:dbbf35b96557 528 */
Kojto 99:dbbf35b96557 529
Kojto 99:dbbf35b96557 530 /* Private functions ---------------------------------------------------------*/
Kojto 99:dbbf35b96557 531 /** @defgroup DMA2D_Private_Functions DMA2D Private Functions
Kojto 99:dbbf35b96557 532 * @{
Kojto 99:dbbf35b96557 533 */
Kojto 99:dbbf35b96557 534
Kojto 99:dbbf35b96557 535 /**
Kojto 99:dbbf35b96557 536 * @}
Kojto 99:dbbf35b96557 537 */
Kojto 93:e188a91d3eaa 538
Kojto 93:e188a91d3eaa 539 /**
Kojto 93:e188a91d3eaa 540 * @}
Kojto 93:e188a91d3eaa 541 */
Kojto 93:e188a91d3eaa 542
Kojto 93:e188a91d3eaa 543 /**
Kojto 93:e188a91d3eaa 544 * @}
Kojto 93:e188a91d3eaa 545 */
Kojto 99:dbbf35b96557 546
Kojto 110:165afa46840b 547 #endif /* STM32F427xx || STM32F437xx || STM32F429xx || STM32F439xx || STM32F469xx || STM32F479xx */
Kojto 99:dbbf35b96557 548
Kojto 93:e188a91d3eaa 549 #ifdef __cplusplus
Kojto 93:e188a91d3eaa 550 }
Kojto 93:e188a91d3eaa 551 #endif
Kojto 93:e188a91d3eaa 552
Kojto 93:e188a91d3eaa 553 #endif /* __STM32F4xx_HAL_DMA2D_H */
Kojto 93:e188a91d3eaa 554
Kojto 93:e188a91d3eaa 555 /************************ (C) COPYRIGHT STMicroelectronics *****END OF FILE****/