Important changes to repositories hosted on mbed.com
Mbed hosted mercurial repositories are deprecated and are due to be permanently deleted in July 2026.
To keep a copy of this software download the repository Zip archive or clone locally using Mercurial.
It is also possible to export all your personal repositories from the account settings page.
Dependents: CAN_TEST SPIne_Plus_DYNO_SENSORS SPIne_Plus_v2 SPIne_Plus_Dyno_v2
targets/TARGET_STM/TARGET_STM32F4/device/stm32f4xx_hal_ltdc_ex.h@0:083111ae2a11, 2020-11-26 (annotated)
- Committer:
- saloutos
- Date:
- Thu Nov 26 04:08:56 2020 +0000
- Revision:
- 0:083111ae2a11
first commit of leaned mbed dev lib
Who changed what in which revision?
| User | Revision | Line number | New contents of line |
|---|---|---|---|
| saloutos | 0:083111ae2a11 | 1 | /** |
| saloutos | 0:083111ae2a11 | 2 | ****************************************************************************** |
| saloutos | 0:083111ae2a11 | 3 | * @file stm32f4xx_hal_ltdc_ex.h |
| saloutos | 0:083111ae2a11 | 4 | * @author MCD Application Team |
| saloutos | 0:083111ae2a11 | 5 | * @version V1.7.1 |
| saloutos | 0:083111ae2a11 | 6 | * @date 14-April-2017 |
| saloutos | 0:083111ae2a11 | 7 | * @brief Header file of LTDC HAL Extension module. |
| saloutos | 0:083111ae2a11 | 8 | ****************************************************************************** |
| saloutos | 0:083111ae2a11 | 9 | * @attention |
| saloutos | 0:083111ae2a11 | 10 | * |
| saloutos | 0:083111ae2a11 | 11 | * <h2><center>© COPYRIGHT(c) 2017 STMicroelectronics</center></h2> |
| saloutos | 0:083111ae2a11 | 12 | * |
| saloutos | 0:083111ae2a11 | 13 | * Redistribution and use in source and binary forms, with or without modification, |
| saloutos | 0:083111ae2a11 | 14 | * are permitted provided that the following conditions are met: |
| saloutos | 0:083111ae2a11 | 15 | * 1. Redistributions of source code must retain the above copyright notice, |
| saloutos | 0:083111ae2a11 | 16 | * this list of conditions and the following disclaimer. |
| saloutos | 0:083111ae2a11 | 17 | * 2. Redistributions in binary form must reproduce the above copyright notice, |
| saloutos | 0:083111ae2a11 | 18 | * this list of conditions and the following disclaimer in the documentation |
| saloutos | 0:083111ae2a11 | 19 | * and/or other materials provided with the distribution. |
| saloutos | 0:083111ae2a11 | 20 | * 3. Neither the name of STMicroelectronics nor the names of its contributors |
| saloutos | 0:083111ae2a11 | 21 | * may be used to endorse or promote products derived from this software |
| saloutos | 0:083111ae2a11 | 22 | * without specific prior written permission. |
| saloutos | 0:083111ae2a11 | 23 | * |
| saloutos | 0:083111ae2a11 | 24 | * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" |
| saloutos | 0:083111ae2a11 | 25 | * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE |
| saloutos | 0:083111ae2a11 | 26 | * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE |
| saloutos | 0:083111ae2a11 | 27 | * DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE |
| saloutos | 0:083111ae2a11 | 28 | * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL |
| saloutos | 0:083111ae2a11 | 29 | * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR |
| saloutos | 0:083111ae2a11 | 30 | * SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER |
| saloutos | 0:083111ae2a11 | 31 | * CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, |
| saloutos | 0:083111ae2a11 | 32 | * OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE |
| saloutos | 0:083111ae2a11 | 33 | * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
| saloutos | 0:083111ae2a11 | 34 | * |
| saloutos | 0:083111ae2a11 | 35 | ****************************************************************************** |
| saloutos | 0:083111ae2a11 | 36 | */ |
| saloutos | 0:083111ae2a11 | 37 | |
| saloutos | 0:083111ae2a11 | 38 | /* Define to prevent recursive inclusion -------------------------------------*/ |
| saloutos | 0:083111ae2a11 | 39 | #ifndef __STM32F4xx_HAL_LTDC_EX_H |
| saloutos | 0:083111ae2a11 | 40 | #define __STM32F4xx_HAL_LTDC_EX_H |
| saloutos | 0:083111ae2a11 | 41 | |
| saloutos | 0:083111ae2a11 | 42 | #ifdef __cplusplus |
| saloutos | 0:083111ae2a11 | 43 | extern "C" { |
| saloutos | 0:083111ae2a11 | 44 | #endif |
| saloutos | 0:083111ae2a11 | 45 | |
| saloutos | 0:083111ae2a11 | 46 | #if defined(STM32F469xx) || defined(STM32F479xx) |
| saloutos | 0:083111ae2a11 | 47 | /* Includes ------------------------------------------------------------------*/ |
| saloutos | 0:083111ae2a11 | 48 | #include "stm32f4xx_hal_def.h" |
| saloutos | 0:083111ae2a11 | 49 | #include "stm32f4xx_hal_dsi.h" |
| saloutos | 0:083111ae2a11 | 50 | |
| saloutos | 0:083111ae2a11 | 51 | /** @addtogroup STM32F4xx_HAL_Driver |
| saloutos | 0:083111ae2a11 | 52 | * @{ |
| saloutos | 0:083111ae2a11 | 53 | */ |
| saloutos | 0:083111ae2a11 | 54 | |
| saloutos | 0:083111ae2a11 | 55 | /** @addtogroup LTDCEx |
| saloutos | 0:083111ae2a11 | 56 | * @{ |
| saloutos | 0:083111ae2a11 | 57 | */ |
| saloutos | 0:083111ae2a11 | 58 | |
| saloutos | 0:083111ae2a11 | 59 | /* Exported types ------------------------------------------------------------*/ |
| saloutos | 0:083111ae2a11 | 60 | /* Exported constants --------------------------------------------------------*/ |
| saloutos | 0:083111ae2a11 | 61 | /* Exported macro ------------------------------------------------------------*/ |
| saloutos | 0:083111ae2a11 | 62 | /* Exported functions --------------------------------------------------------*/ |
| saloutos | 0:083111ae2a11 | 63 | /** @addtogroup LTDCEx_Exported_Functions |
| saloutos | 0:083111ae2a11 | 64 | * @{ |
| saloutos | 0:083111ae2a11 | 65 | */ |
| saloutos | 0:083111ae2a11 | 66 | |
| saloutos | 0:083111ae2a11 | 67 | /** @addtogroup LTDCEx_Exported_Functions_Group1 |
| saloutos | 0:083111ae2a11 | 68 | * @{ |
| saloutos | 0:083111ae2a11 | 69 | */ |
| saloutos | 0:083111ae2a11 | 70 | HAL_StatusTypeDef HAL_LTDCEx_StructInitFromVideoConfig(LTDC_HandleTypeDef* hltdc, DSI_VidCfgTypeDef *VidCfg); |
| saloutos | 0:083111ae2a11 | 71 | HAL_StatusTypeDef HAL_LTDCEx_StructInitFromAdaptedCommandConfig(LTDC_HandleTypeDef* hltdc, DSI_CmdCfgTypeDef *CmdCfg); |
| saloutos | 0:083111ae2a11 | 72 | /** |
| saloutos | 0:083111ae2a11 | 73 | * @} |
| saloutos | 0:083111ae2a11 | 74 | */ |
| saloutos | 0:083111ae2a11 | 75 | |
| saloutos | 0:083111ae2a11 | 76 | /** |
| saloutos | 0:083111ae2a11 | 77 | * @} |
| saloutos | 0:083111ae2a11 | 78 | */ |
| saloutos | 0:083111ae2a11 | 79 | |
| saloutos | 0:083111ae2a11 | 80 | /* Private types -------------------------------------------------------------*/ |
| saloutos | 0:083111ae2a11 | 81 | /* Private variables ---------------------------------------------------------*/ |
| saloutos | 0:083111ae2a11 | 82 | /* Private constants ---------------------------------------------------------*/ |
| saloutos | 0:083111ae2a11 | 83 | /* Private macros ------------------------------------------------------------*/ |
| saloutos | 0:083111ae2a11 | 84 | /* Private functions ---------------------------------------------------------*/ |
| saloutos | 0:083111ae2a11 | 85 | |
| saloutos | 0:083111ae2a11 | 86 | /** |
| saloutos | 0:083111ae2a11 | 87 | * @} |
| saloutos | 0:083111ae2a11 | 88 | */ |
| saloutos | 0:083111ae2a11 | 89 | |
| saloutos | 0:083111ae2a11 | 90 | /** |
| saloutos | 0:083111ae2a11 | 91 | * @} |
| saloutos | 0:083111ae2a11 | 92 | */ |
| saloutos | 0:083111ae2a11 | 93 | |
| saloutos | 0:083111ae2a11 | 94 | #endif /* STM32F469xx || STM32F479xx */ |
| saloutos | 0:083111ae2a11 | 95 | |
| saloutos | 0:083111ae2a11 | 96 | #ifdef __cplusplus |
| saloutos | 0:083111ae2a11 | 97 | } |
| saloutos | 0:083111ae2a11 | 98 | #endif |
| saloutos | 0:083111ae2a11 | 99 | |
| saloutos | 0:083111ae2a11 | 100 | #endif /* __STM32F4xx_HAL_LTDC_EX_H */ |
| saloutos | 0:083111ae2a11 | 101 | |
| saloutos | 0:083111ae2a11 | 102 | /************************ (C) COPYRIGHT STMicroelectronics *****END OF FILE****/ |