aboutsummaryrefslogtreecommitdiffstats
path: root/drivers.m4
diff options
context:
space:
mode:
authormichael <michael@3ae390bd-cb1e-0410-b409-cd5a39f66f1f>2012-02-21 03:53:17 +0000
committermichael <michael@3ae390bd-cb1e-0410-b409-cd5a39f66f1f>2012-02-21 03:53:17 +0000
commitc5fc726e3be16f316da9c0e2dae97ae633d33c61 (patch)
tree825835b92f3c227a0eb231bdca1b4ed6517f2f07 /drivers.m4
parent69ca09755b1758a055d2db155f64029d7a87e674 (diff)
downloadlcd4linux-c5fc726e3be16f316da9c0e2dae97ae633d33c61.tar.gz
driver for Futaba VFD by Marcus Menzel
git-svn-id: https://ssl.bulix.org/svn/lcd4linux/trunk@1176 3ae390bd-cb1e-0410-b409-cd5a39f66f1f
Diffstat (limited to 'drivers.m4')
-rw-r--r--drivers.m419
1 files changed, 18 insertions, 1 deletions
diff --git a/drivers.m4 b/drivers.m4
index cb8de1d..a7ed545 100644
--- a/drivers.m4
+++ b/drivers.m4
@@ -33,7 +33,7 @@ AC_ARG_WITH(
[ (try 'all,\!<driver>' if your shell complains...)]
[ possible drivers are:]
[ ASTUSB, BeckmannEgle, BWCT, CrystalFontz, Curses, Cwlinux, D4D, DPF]
- [ EA232Graphic, EFN, FW8888, G15, GLCD2USB, HD44780, HD44780-I2C,]
+ [ EA232Graphic, EFN, FutabaVFD, FW8888, G15, GLCD2USB, HD44780, HD44780-I2C,]
[ IRLCD, LCD2USB, LCDLinux, LEDMatrix, LCDTerm, LPH7508, LUIse,]
[ LW_ABP, M50530, MatrixOrbital, MatrixOrbitalGX, MilfordInstruments, MDM166A,]
[ Newhaven, Noritake, NULL, Pertelian, PHAnderson,]
@@ -70,6 +70,7 @@ for driver in $drivers; do
DPF="yes"
EA232graphic="yes"
EFN="yes"
+ FUTABAVFD="yes"
FW8888="yes"
G15="yes"
GLCD2USB="yes"
@@ -144,6 +145,9 @@ for driver in $drivers; do
EFN)
EFN=$val
;;
+ FutabaVFD)
+ FUTABAVFD=$val
+ ;;
FW8888)
FW8888=$val
;;
@@ -394,6 +398,19 @@ if test "$EFN" = "yes"; then
AC_DEFINE(WITH_EFN,1,[Driver for EFN LED modules and EUG 100 ethernet to serial converter])
fi
+if test "$FUTABAVFD" = "yes"; then
+ if test "$has_parport" = "true"; then
+ TEXT="yes"
+ # select bus: serial (including USB), parallel or i2c
+ PARPORT="yes"
+ DRIVERS="$DRIVERS drv_FutabaVFD.o"
+ AC_DEFINE(WITH_FUTABAVFD,1,[FutabaVFD driver])
+ else
+ AC_MSG_WARN(asm/io.h or {linux/parport.h and linux/ppdev.h} not found: FutabaVFD driver disabled)
+ fi
+fi
+
+
if test "$FW8888" = "yes"; then
TEXT="yes"