aboutsummaryrefslogtreecommitdiffstats
path: root/drivers.m4
diff options
context:
space:
mode:
authormichael <michael@3ae390bd-cb1e-0410-b409-cd5a39f66f1f>2007-01-19 16:34:43 +0000
committermichael <michael@3ae390bd-cb1e-0410-b409-cd5a39f66f1f>2007-01-19 16:34:43 +0000
commit1d71c6d777e1f8cc91921f612b27518459b66528 (patch)
tree584245f4cd1b142d0329cfc3cd68a95120bb26ec /drivers.m4
parent905dbf38f50aaa63c592e79aa30b413492e31f7f (diff)
downloadlcd4linux-1d71c6d777e1f8cc91921f612b27518459b66528.tar.gz
driver for picoLCD displays from mini-box.com by Nicu Pavel
git-svn-id: https://ssl.bulix.org/svn/lcd4linux/trunk@747 3ae390bd-cb1e-0410-b409-cd5a39f66f1f
Diffstat (limited to 'drivers.m4')
-rw-r--r--drivers.m417
1 files changed, 15 insertions, 2 deletions
diff --git a/drivers.m4 b/drivers.m4
index 0976d50..e0d0cbe 100644
--- a/drivers.m4
+++ b/drivers.m4
@@ -35,7 +35,7 @@ AC_ARG_WITH(
[ BeckmannEgle, BWCT, CrystalFontz, Curses, Cwlinux,]
[ G15, HD44780, LCD2USB LCDLinux, LCDTerm, LPH7508,]
[ LUIse, M50530, MatrixOrbital, MilfordInstruments,]
- [ Noritake, NULL, PNG, PPM, RouterBoard, Sample,]
+ [ Noritake, NULL, PNG, PPM, picoLCD, RouterBoard, Sample,]
[ serdisplib, SimpleLCD, T6963, Trefon, USBLCD,]
[ USBHUB, WincorNixdorf, X11],
drivers=$withval,
@@ -76,9 +76,10 @@ for driver in $drivers; do
MILINST="yes"
NORITAKE="yes"
NULL="yes"
+ picoLCD="yes"
PNG="yes"
PPM="yes"
- ROUTERBOARD="yes"
+ ROUTERBOARD="yes"
SAMPLE="yes"
SERDISPLIB="yes"
SIMPLELCD="yes"
@@ -146,6 +147,9 @@ for driver in $drivers; do
NULL)
NULL=$val;
;;
+ picoLCD)
+ picoLCD=$val
+ ;;
PNG)
PNG=$val
;;
@@ -375,6 +379,15 @@ if test "$NULL" = "yes"; then
AC_DEFINE(WITH_NULL,1,[NULL driver])
fi
+if test "$picoLCD" = "yes"; then
+ TEXT="yes"
+ GPIO="yes"
+ SERIAL="yes"
+ #I2C="yes"
+ DRIVERS="$DRIVERS drv_picoLCD.o"
+ AC_DEFINE(WITH_picoLCD,1,[picoLCD driver])
+fi
+
if test "$PNG" = "yes"; then
if test "$has_gd" = "true"; then
IMAGE="yes"