lcd_hx8312a.h

来自「CPU接口的LCD控制代码」· C头文件 代码 · 共 66 行

H
66
字号
/**
 * @belief: transmit HX8312A LCD specific functions to lcd.c
 * @author YiRuoxiang
 * @date 2006-07-05
 * @version 1.0
 * @ref Please refer to HX8312-A.pdf.
 * @NOTE
 * 18 bit LCD
 */

#ifndef __LCD_HX8312A_H__
#define __LCD_HX8312A_H__

#include "LCD.h"

T_VOID set_disp_address_hx8312a(T_U32 x1, T_U32 y1, T_U32 x2, T_U32 y2);

/**
 * @brief Initialize the hx8312a LCD
 * Initialize master LCD and slave LCD and then turn on them
 * @author YiRuoxiang
 * @date 2005-12-30
 * @param T_VOID
 * @return T_VOID
 */
T_VOID  lcd_hx8312a_initial(T_VOID);

/**
 * @brief Turn on the LCD
 * @author qxj
 * @date 2005-07-18
 * @param T_eLCD lcd: selected LCD, must be LCD_M or LCD_S
 * @return T_VOID
 */
T_VOID lcd_hx8312a_turn_on(T_eLCD lcd);

/**
 * @brief Turn off the LCD
 * @author qxj
 * @date 2004-09-14
 * @param T_eLCD lcd: selected LCD, must be LCD_M or LCD_S
 * @return T_VOID
 */
T_VOID lcd_hx8312a_turn_off(T_eLCD lcd);

/**
 * @brief Set lcd_hx8312a contrast value
 * @author YiRuoxiang
 * @date 2006-01-04
 * @param T_U8 contrast: contrast value
 * @return T_VOID
 * @retval
 */
T_VOID lcd_hx8312a_set_contrast(T_U8 contrast);

/**
 * @brief   rotate the picture 90 degree
 * @author  lgj
 * @date    2005-08-18
 * @param   T_VOID
 * @retval  T_VOID
 */
T_VOID lcd_hx8312a_rotate(T_VOID);
#endif

⌨️ 快捷键说明

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