diff options
author | michux <michux@3ae390bd-cb1e-0410-b409-cd5a39f66f1f> | 2009-04-06 20:03:37 +0000 |
---|---|---|
committer | michux <michux@3ae390bd-cb1e-0410-b409-cd5a39f66f1f> | 2009-04-06 20:03:37 +0000 |
commit | 0aa04e30811665c1d5a0f8f082044a0c8e97c896 (patch) | |
tree | 8e9a7593d4208415a862d01c0ce4280fc315c84e /drivers.m4 | |
parent | 3d7cc4789d6b936820666d5d534c988b073cf548 (diff) | |
download | lcd4linux-0aa04e30811665c1d5a0f8f082044a0c8e97c896.tar.gz |
add shuttle VFD driver
git-svn-id: https://ssl.bulix.org/svn/lcd4linux/trunk@1022 3ae390bd-cb1e-0410-b409-cd5a39f66f1f
Diffstat (limited to 'drivers.m4')
-rw-r--r-- | drivers.m4 | 23 |
1 files changed, 19 insertions, 4 deletions
@@ -36,9 +36,9 @@ AC_ARG_WITH( [ G15, GLCD2USB, HD44780, IRLCD, LCD2USB, LCDLinux, LCDTerm,] [ LPH7508, LUIse, M50530, MatrixOrbital, MilfordInstruments,] [ Noritake, NULL, PNG, PPM, Pertelian, PHAnderson, picoLCD,] - [ picoLCDGraphic, RouterBoard, Sample, serdisplib, SimpleLCD,] - [ st2205, T6963, Trefon, ULA200, USBLCD, USBHUB, VNC,] - [ WincorNixdorf, X11], + [ picoLCDGraphic, RouterBoard, Sample, serdisplib, ShuttleVFD,] + [ SimpleLCD, st2205, T6963, Trefon, ULA200, USBLCD, USBHUB,] + [ VNC, WincorNixdorf, X11], drivers=$withval, drivers=all ) @@ -92,6 +92,7 @@ for driver in $drivers; do SAMPLE="yes" ST2205="yes" SERDISPLIB="yes" + SHUTTLEVFD="yes" SIMPLELCD="yes" T6963="yes" Trefon="yes" @@ -186,7 +187,6 @@ for driver in $drivers; do picoLCDGraphic) PICOLCDGRAPHIC=$val ;; - PNG) PNG=$val ;; @@ -202,6 +202,9 @@ for driver in $drivers; do serdisplib) SERDISPLIB=$val; ;; + ShuttleVFD) + SHUTTLEVFD=$val + ;; SimpleLCD) SIMPLELCD=$val ;; @@ -576,6 +579,18 @@ if test "$SERDISPLIB" = "yes"; then fi fi +if test "$SHUTTLEVFD" = "yes"; then + if test "$has_usb" = "true"; then + TEXT="yes" + GPIO="yes" + DRIVERS="$DRIVERS drv_ShuttleVFD.o" + LIBUSB="yes" + AC_DEFINE(WITH_SHUTTLEVFD,1,[ShuttleVFD driver]) + else + AC_MSG_WARN(usb.h not found: ShuttleVFD driver disabled) + fi +fi + if test "$SIMPLELCD" = "yes"; then TEXT="yes" SERIAL="yes" |