www.pudn.com > drives for uCGUI.rar   To Read all the content


[file head]:
/*
*********************************************************************************************************
* uC/GUI
* Universal graphic software for embedded applications
*
* (c) Copyright 2002, Micrium Inc., Weston, FL
* (c) Copyright 2002, SEGGER Microcontroller Systeme GmbH
*
* µC/GUI is protected by international copyright laws. Knowledge of the
* source code may not be used to write a similar product. This file may
* only be used in accordance with a license and should not be redistributed
* in any way. We appreciate your understanding and fairness.
*
----------------------------------------------------------------------
File : LCD13XX.C
Purpose : Driver for LCDs using a single Seiko Epson SED13XX controllers
This version supports a single LCD controller
in (almost) any har
... ...

[file tail]:
... ...
0);
LCD_WRITE_MEM(1,0x52);
if ((LCD_READ_MEM(0) != 0) || (LCD_READ_MEM(1) != 0x52)) {
GUI_DEBUG_ERROROUT("\nLCD13XX: video memory problem");
return LCD_ERR_MEMORY;
}
#endif
return 0; /* Init successfull ! */
}


/*
*********************************************************
* *
* LCD_L0_CheckInit *
* *
* Check if display controller(s) is/are still *
* properly initialized *
* *
*********************************************************

Return value: 0 => No error, init is O.K.

*/

int LCD_L0_CheckInit(void) {
return 0;
}


#else

void LCD13XX(void) { } /* avoid empty object files */

#endif /* (LCD_CONTROLLER/100 == 13) */