41 lines
1.5 KiB
C
41 lines
1.5 KiB
C
/*
|
||
*********************************************************************************************************
|
||
* uC/GUI
|
||
* Universal graphic software for embedded applications
|
||
*
|
||
* (c) Copyright 2002, Micrium Inc., Weston, FL
|
||
* (c) Copyright 2002, SEGGER Microcontroller Systeme GmbH
|
||
*
|
||
* <20>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 : LCDConf_1375_C8_C320x240.h
|
||
Purpose : Sample configuration file
|
||
----------------------------------------------------------------------
|
||
*/
|
||
|
||
#ifndef LCDCONF_H
|
||
#define LCDCONF_H
|
||
#include "board.h" // user defined
|
||
|
||
/*********************************************************************
|
||
*
|
||
* General configuration of LCD
|
||
*
|
||
**********************************************************************
|
||
*/
|
||
|
||
#define LCD_XSIZE (400) /* X-resolution of LCD, Logical coor. */
|
||
#define LCD_YSIZE (240) /* Y-resolution of LCD, Logical coor. */
|
||
|
||
#define LCD_BITSPERPIXEL (8)
|
||
|
||
#define LCD_CONTROLLER (-1)
|
||
|
||
#define LCD_INIT_CONTROLLER() lcd_init();
|
||
|
||
#endif /* LCDCONF_H */
|