训练营PLSR题目
Вы не можете выбрать более 25 тем Темы должны начинаться с буквы или цифры, могут содержать дефисы(-) и должны содержать не более 35 символов.
 
 
 
 
 
 

84 строки
2.3 KiB

  1. /**
  2. ******************************************************************************
  3. * @file stm32f4xx_hal_ltdc_ex.h
  4. * @author MCD Application Team
  5. * @brief Header file of LTDC HAL Extension module.
  6. ******************************************************************************
  7. * @attention
  8. *
  9. * Copyright (c) 2016 STMicroelectronics.
  10. * All rights reserved.
  11. *
  12. * This software is licensed under terms that can be found in the LICENSE file
  13. * in the root directory of this software component.
  14. * If no LICENSE file comes with this software, it is provided AS-IS.
  15. *
  16. ******************************************************************************
  17. */
  18. /* Define to prevent recursive inclusion -------------------------------------*/
  19. #ifndef STM32F4xx_HAL_LTDC_EX_H
  20. #define STM32F4xx_HAL_LTDC_EX_H
  21. #ifdef __cplusplus
  22. extern "C" {
  23. #endif
  24. /* Includes ------------------------------------------------------------------*/
  25. #include "stm32f4xx_hal_def.h"
  26. #if defined (LTDC) && defined (DSI)
  27. #include "stm32f4xx_hal_dsi.h"
  28. /** @addtogroup STM32F4xx_HAL_Driver
  29. * @{
  30. */
  31. /** @addtogroup LTDCEx
  32. * @{
  33. */
  34. /* Exported types ------------------------------------------------------------*/
  35. /* Exported constants --------------------------------------------------------*/
  36. /* Exported macro ------------------------------------------------------------*/
  37. /* Exported functions --------------------------------------------------------*/
  38. /** @addtogroup LTDCEx_Exported_Functions
  39. * @{
  40. */
  41. /** @addtogroup LTDCEx_Exported_Functions_Group1
  42. * @{
  43. */
  44. HAL_StatusTypeDef HAL_LTDCEx_StructInitFromVideoConfig(LTDC_HandleTypeDef *hltdc, DSI_VidCfgTypeDef *VidCfg);
  45. HAL_StatusTypeDef HAL_LTDCEx_StructInitFromAdaptedCommandConfig(LTDC_HandleTypeDef *hltdc, DSI_CmdCfgTypeDef *CmdCfg);
  46. /**
  47. * @}
  48. */
  49. /**
  50. * @}
  51. */
  52. /* Private types -------------------------------------------------------------*/
  53. /* Private variables ---------------------------------------------------------*/
  54. /* Private constants ---------------------------------------------------------*/
  55. /* Private macros ------------------------------------------------------------*/
  56. /* Private functions ---------------------------------------------------------*/
  57. /**
  58. * @}
  59. */
  60. /**
  61. * @}
  62. */
  63. #endif /* LTDC && DSI */
  64. #ifdef __cplusplus
  65. }
  66. #endif
  67. #endif /* STM32F4xx_HAL_LTDC_EX_H */