📄 openxlcd.c
字号:
#include "xlcd.h"
#include "delay.h"
#ifdef _RD10
/*******************************************************************
Function Name: OpenXLCD
Description: This function configure the IO pins
and initializes the LCD controller
the lcdtype should contain data on the type
of interface and number of lines of display.
Input parameters: char lcdtype
Return value: none
********************************************************************/
void OpenXLCD(char lcdType)
{
/* Allow a delay for POR.(minimum of 15ms) */
DelayPORXLCD();
/*Initialize the data port/control pins to zero */
DATA_PIN_7 = 0;
DATA_PIN_6 = 0;
DATA_PIN_5 = 0;
DATA_PIN_4 = 0;
# ifdef EIGHT_BIT_INTERFACE
DATA_PIN_3 = 0;
DATA_PIN_2 = 0;
DATA_PIN_1 = 0;
DATA_PIN_0 = 0;
#endif
RW_PIN = 0;
RS_PIN = 0;
E_PIN = 0;
/* Configure the data pins as input */
TRIS_DATA_PIN_7 = 0;
TRIS_DATA_PIN_6 = 0;
TRIS_DATA_PIN_5 = 0;
TRIS_DATA_PIN_4 = 0;
#ifdef EIGHT_BIT_INTERFACE
TRIS_DATA_PIN_3 = 0;
TRIS_DATA_PIN_2 = 0;
TRIS_DATA_PIN_1 = 0;
TRIS_DATA_PIN_0 = 0;
#endif
/* Make all control pins as outputs */
TRIS_RW = 0;
TRIS_RS = 0;
TRIS_E = 0;
/* First Step - Function Set as specified by lcdType*/
WriteCmdXLCD(lcdType);
/* Second Step - Display ON/OFF CONTROL*/
WriteCmdXLCD(DON & BLINK_OFF & CURSOR_ON);
/* Third Step - LCD Clear */
WriteCmdXLCD(CLEAR_XLCD);
/*Fourth Step - Entry Mode Set */
WriteCmdXLCD(ENTIRE_SHIFT_OFF & INCR_MODE);
} /* end of function */
#else
#warning "Does not build on this target"
#endif
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -