Make sure docs are updated / settings_md (push) Canceled after 0s
Build firmware / test (push) Canceled after 0s
Build firmware / build-SITL-Windows (push) Canceled after 0s
Build firmware / build-SITL-Mac (push) Canceled after 0s
Build firmware / build-SITL-Linux (push) Canceled after 0s
Build firmware / build-SITL-Linux-arm64 (push) Canceled after 0s
Build firmware / upload-artifacts (push) Canceled after 0s
Build firmware / build-single-target (push) Canceled after 0s
Build firmware / build (9) (push) Canceled after 0s
Build firmware / build (8) (push) Canceled after 0s
Build firmware / build (7) (push) Canceled after 0s
Build firmware / build (6) (push) Canceled after 0s
Build firmware / build (5) (push) Canceled after 0s
Build firmware / build (4) (push) Canceled after 0s
Build firmware / build (3) (push) Canceled after 0s
Build firmware / build (2) (push) Canceled after 0s
Build firmware / build (14) (push) Canceled after 0s
Build firmware / build (13) (push) Canceled after 0s
Build firmware / build (12) (push) Canceled after 0s
Build firmware / build (11) (push) Canceled after 0s
Build firmware / build (10) (push) Canceled after 0s
Build firmware / build (1) (push) Canceled after 0s
Build firmware / build (0) (push) Canceled after 0s
Build firmware / detect (push) Canceled after 0s
Build pre-release / build (push) Canceled after 0s
Build pre-release / Release (push) Canceled after 0s
104 lines
2.5 KiB
C
104 lines
2.5 KiB
C
/**
|
|
******************************************************************************
|
|
* @file rk043fn48h.h
|
|
* @author MCD Application Team
|
|
* @brief This file contains all the constants parameters for the RK043FN48H-CT672B
|
|
* LCD component.
|
|
******************************************************************************
|
|
* @attention
|
|
*
|
|
* <h2><center>© Copyright (c) 2015 STMicroelectronics.
|
|
* All rights reserved.</center></h2>
|
|
*
|
|
* This software component is licensed by ST under BSD 3-Clause license,
|
|
* the "License"; You may not use this file except in compliance with the
|
|
* License. You may obtain a copy of the License at:
|
|
* opensource.org/licenses/BSD-3-Clause
|
|
*
|
|
******************************************************************************
|
|
*/
|
|
|
|
/* Define to prevent recursive inclusion -------------------------------------*/
|
|
#ifndef __RK043FN48H_H
|
|
#define __RK043FN48H_H
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
/* Includes ------------------------------------------------------------------*/
|
|
|
|
/** @addtogroup BSP
|
|
* @{
|
|
*/
|
|
|
|
/** @addtogroup Components
|
|
* @{
|
|
*/
|
|
|
|
/** @addtogroup rk043fn48h
|
|
* @{
|
|
*/
|
|
|
|
/** @defgroup RK043FN48H_Exported_Types
|
|
* @{
|
|
*/
|
|
|
|
/**
|
|
* @}
|
|
*/
|
|
|
|
/** @defgroup RK043FN48H_Exported_Constants
|
|
* @{
|
|
*/
|
|
|
|
/**
|
|
* @brief RK043FN48H Size
|
|
*/
|
|
#define RK043FN48H_WIDTH ((uint16_t)480) /* LCD PIXEL WIDTH */
|
|
#define RK043FN48H_HEIGHT ((uint16_t)272) /* LCD PIXEL HEIGHT */
|
|
|
|
/**
|
|
* @brief RK043FN48H Timing
|
|
*/
|
|
#define RK043FN48H_HSYNC ((uint16_t)41) /* Horizontal synchronization */
|
|
#define RK043FN48H_HBP ((uint16_t)13) /* Horizontal back porch */
|
|
#define RK043FN48H_HFP ((uint16_t)32) /* Horizontal front porch */
|
|
#define RK043FN48H_VSYNC ((uint16_t)10) /* Vertical synchronization */
|
|
#define RK043FN48H_VBP ((uint16_t)2) /* Vertical back porch */
|
|
#define RK043FN48H_VFP ((uint16_t)2) /* Vertical front porch */
|
|
|
|
/**
|
|
* @brief RK043FN48H frequency divider
|
|
*/
|
|
#define RK043FN48H_FREQUENCY_DIVIDER 5 /* LCD Frequency divider */
|
|
/**
|
|
* @}
|
|
*/
|
|
|
|
/** @defgroup RK043FN48H_Exported_Functions
|
|
* @{
|
|
*/
|
|
|
|
/**
|
|
* @}
|
|
*/
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
|
|
#endif /* __RK043FN48H_H */
|
|
/**
|
|
* @}
|
|
*/
|
|
|
|
/**
|
|
* @}
|
|
*/
|
|
|
|
/**
|
|
* @}
|
|
*/
|
|
|
|
/************************ (C) COPYRIGHT STMicroelectronics *****END OF FILE****/
|