⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 lcd_panels.h

📁 windows 6.0 lcd driver
💻 H
字号:
//
// Copyright (c) Microsoft Corporation.  All rights reserved.
//
//
// Use of this sample source code is subject to the terms of the Microsoft
// license agreement under which you licensed this sample source code. If
// you did not accept the terms of the license agreement, you are not
// authorized to use this sample source code. For the terms of the license,
// please see the license agreement between you and Microsoft or, if applicable,
// see the LICENSE.RTF on your install media or the root of your tools installation.
// THE SAMPLE SOURCE CODE IS PROVIDED "AS IS", WITH NO WARRANTIES OR INDEMNITIES.
//
//
// (C) Copyright 2006 Marvell International Ltd.
// All Rights Reserved
//
/******************************************************************************
**
** INTEL CONFIDENTIAL
** Copyright 2003-2005 Intel Corporation All Rights Reserved.
**
** The source code contained or described herein and all documents
** related to the source code (Material) are owned by Intel Corporation
** or its suppliers or licensors.  Title to the Material remains with
** Intel Corporation or its suppliers and licensors. The Material contains
** trade secrets and proprietary and confidential information of Intel
** or its suppliers and licensors. The Material is protected by worldwide
** copyright and trade secret laws and treaty provisions. No part of the
** Material may be used, copied, reproduced, modified, published, uploaded,
** posted, transmitted, distributed, or disclosed in any way without Intel抯
** prior express written permission.

** No license under any patent, copyright, trade secret or other intellectual
** property right is granted to or conferred upon you by disclosure or
** delivery of the Materials, either expressly, by implication, inducement,
** estoppel or otherwise. Any license under such intellectual property rights
** must be express and approved by Intel in writing.
**
**  FILENAME:  lcd_cpu.h
**
**  PURPOSE:   Private header file for XLLP LCD controller. 
**				This file is specific for LTM035A776C on Zylonite. 
**
*******************************************************************************/

#ifndef __PANELS_H__
#define __PANELS_H__

#include "lcd_plat.h"

#ifdef __cplusplus
extern "C" {
#endif

enum{
	LCD_PANEL_ID_776C = 0x02,
	LCD_PANEL_ID_380K = 0x00,
	/* for VGA/QVGA/OLED panel, last bit is floated, so it's either 0 or 1 */
	LCD_PANEL_ID_VGA_QVGA_OLED_LEAD = 0x20,
	LCD_PANEL_ID_VGA_QVGA_OLED_LEAD_FREE = 0x25,
	LCD_PANEL_ID_VGA_QVGA_OLED_LEAD_FREE_LANDSCAPE = 0x21,
	LCD_PANEL_ID_UNKNOWN = 0xff
};
	
active_panel_t* vga_qvga_panel_init(BOOL is_vga, BOOL is_leaded);
void set_lcd_domain(BOOL enable);

#ifdef __cplusplus
}
#endif

#endif //__PANELS_H__

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -