removed glcdconf.h

it makes more sense for this config to be in the board file /
application header / chconf.h
ugfx_release_2.6
Thomas Saunders 2012-06-22 10:26:41 +01:00
parent 427346aaf2
commit d0e3a0636e
5 changed files with 2 additions and 25 deletions

View File

@ -2,7 +2,6 @@
#define S6D1121_H
#include "glcd.h"
#include "glcdconf.h"
#ifdef LCD_USE_S6D1121

View File

@ -2,7 +2,6 @@
#define SSD1289_H
#include "glcd.h"
#include "glcdconf.h"
#ifdef LCD_USE_SSD1289

View File

@ -1,7 +1,7 @@
#ifndef ADS7843_LLD_H
#define ADS7843_LLD_H
#include "glcdconf.h"
#include "glcd.h"
#include "touchpad.h"
#ifdef TOUCHPAD_USE_ADS7843

View File

@ -1,7 +1,7 @@
#ifndef XPT2046_LLD_H
#define XPT2046_LLD_H
#include "glcdconf.h"
#include "glcd.h"
#include "touchpad.h"
#ifdef TOUCHPAD_USE_XPT2046

View File

@ -1,21 +0,0 @@
#ifndef GLCDCONF_H
#define GLCDCONF_H
/***** LCD CONTROLLER *****/
#define LCD_USE_SSD1289
// #define LCD_USE_S6D1121
/***** LCD INTERFACE *****/
#define LCD_USE_GPIO
// #define LCD_USE_SPI
// #define LCD_USE_FSMC
/***** TOUCHPAD CONTROLLER *****/
// #define TOUCHPAD_USE_ADS7843
#define TOUCHPAD_USE_XPT2046
#endif