Inserted help text of drivers into the driver sections.
This commit is contained in:
@@ -19,17 +19,20 @@
|
|||||||
# All extra drivers can only serve as input.
|
# All extra drivers can only serve as input.
|
||||||
# The default driver to use is curses.
|
# The default driver to use is curses.
|
||||||
#
|
#
|
||||||
# In the driver sections currently only one keyword is recognized:
|
# The drivers can read their own options from the config file, but most of
|
||||||
|
# them don't do this yet. They expect 'command-line'-format parameters that
|
||||||
|
# were previously placed on the command line. These parameters can be
|
||||||
|
# given to the driver in the following way:
|
||||||
#
|
#
|
||||||
# Arguments="place arguments here"
|
# Arguments="place arguments here"
|
||||||
#
|
#
|
||||||
# These are the arguments to be passed to the driver, without quotes.
|
# The arguments between the quotes are passed to the driver.
|
||||||
# These are the same arguments that the driver would have been passed
|
# As said before these are the same arguments that the driver would have
|
||||||
# under the old command line format of
|
# been passed under the old command line format of
|
||||||
#
|
#
|
||||||
# -d <driver> "<driverargs>"
|
# -d <driver> "<driverargs>"
|
||||||
#
|
#
|
||||||
# Note that the -d option still works, but not allows arguments anymore.
|
# Note that the -d option still works, but not allows driverargs anymore.
|
||||||
# If -d is specified on the command line, the Driver= options in the
|
# If -d is specified on the command line, the Driver= options in the
|
||||||
# config file are ignored.
|
# config file are ignored.
|
||||||
|
|
||||||
@@ -66,28 +69,60 @@ Foreground=yes
|
|||||||
# The server will stay in the foreground if set to true.
|
# The server will stay in the foreground if set to true.
|
||||||
|
|
||||||
|
|
||||||
[joy]
|
|
||||||
# Joystick driver
|
# Driver sections are below this line, in alphabetical order
|
||||||
|
|
||||||
|
|
||||||
[lcdm001]
|
[bayrad]
|
||||||
# LCDM driver
|
# EMAC BayRAD driver
|
||||||
|
|
||||||
Arguments="-d /dev/lcd"
|
Arguments="fill in here"
|
||||||
|
|
||||||
|
# -d --device Select the output device to use [/dev/lcd]
|
||||||
|
# -t --type Select the LCD type (size) [20x2]
|
||||||
|
# -s --speed Set the communication speed [19200]
|
||||||
|
# -h --help Show this help information
|
||||||
|
|
||||||
|
|
||||||
[MtxOrb]
|
|
||||||
# Matrix Orbital driver
|
|
||||||
|
|
||||||
Arguments="-d /dev/ttyS0 -t 20x2 -c 120"
|
[CFontz]
|
||||||
|
# CrystalFontz driver
|
||||||
|
|
||||||
|
Arguments="-d /dev/ttyS0 -s 9600"
|
||||||
|
|
||||||
|
# -d --device Select the output device to use [/dev/lcd]
|
||||||
|
# -t --type Select the LCD type (size) [20x4]
|
||||||
|
# -c --contrast Set the initial contrast [140]
|
||||||
|
# -b --brightness Set the initial brightness [255]
|
||||||
|
# -o --off-bright Set the initial brightness [0]
|
||||||
|
# -s --speed Set the communication speed [9600]
|
||||||
|
# -r --reboot Reinitialize the LCD's BIOS
|
||||||
|
# -h --help Show this help information
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
[curses]
|
||||||
|
# Curses driver
|
||||||
|
|
||||||
|
Arguments="-f blue -b cyan -B red -t 20x4"
|
||||||
|
|
||||||
|
# -f <color> Foreground color
|
||||||
|
# -b <color> Background color
|
||||||
|
# -B Big numbers size?
|
||||||
|
# -t Display size
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
[GLK]
|
[GLK]
|
||||||
# Matrix Orbital GLK driver
|
# Matrix Orbital GLK driver
|
||||||
|
|
||||||
|
Arguments="-d /dev/ttyS0 -s 9600"
|
||||||
|
|
||||||
|
# -d, --device select the serial device to use [/dev/lcd]
|
||||||
|
# -c, --contrast set the initial contrast value [140]
|
||||||
|
# -s, --speed set the serial port speed [19200]
|
||||||
|
# -h, --help display this help text
|
||||||
|
|
||||||
[CFontz]
|
|
||||||
# CrystalFontz driver
|
|
||||||
|
|
||||||
|
|
||||||
[HD44780]
|
[HD44780]
|
||||||
@@ -125,37 +160,144 @@ Size=20x4
|
|||||||
# to increase the delays. Default: 1.
|
# to increase the delays. Default: 1.
|
||||||
|
|
||||||
DelayBus=true
|
DelayBus=true
|
||||||
# You can reduce the inserted dalays by setting this to false.
|
# You can reduce the inserted delays by setting this to false.
|
||||||
# On fast PCs it is possible your LCD does not respond correctly.
|
# On fast PCs it is possible your LCD does not respond correctly.
|
||||||
# Default: true.
|
# Default: true.
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
[IrMan]
|
||||||
|
#IrMan driver
|
||||||
|
|
||||||
|
Arguments="fill in here"
|
||||||
|
|
||||||
|
# -d --device Select the input device to use
|
||||||
|
# -c --config Select the configuration file to use
|
||||||
|
# -h --help Show this help information
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
[joy]
|
||||||
|
# Joystick driver
|
||||||
|
|
||||||
|
Arguments="-d /dev/js0"
|
||||||
|
|
||||||
|
# -d --device Select the input device to use [/dev/js0]
|
||||||
|
# -a --axes Modify the axis map
|
||||||
|
# -b --buttons Modify the button map
|
||||||
|
# -h --help Show this help information
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
[LB216]
|
[LB216]
|
||||||
# LB216 driver
|
# LB216 driver
|
||||||
|
|
||||||
|
Arguments="-d /dev/ttyS0 -s 9600"
|
||||||
|
|
||||||
[text]
|
# -d --device Select the output device to use [/dev/lcd]
|
||||||
# Text driver
|
# -t --type Select the LCD type (size) [16x2]
|
||||||
|
# -b --brightness Set the initial brightness [255]
|
||||||
|
# -s --speed Set the communication speed [9600]
|
||||||
|
# -r --reboot Reinitialize the LCD's BIOS
|
||||||
|
# -h --help Show this help information;
|
||||||
|
|
||||||
|
|
||||||
[bayrad]
|
|
||||||
# BayRAD driver
|
[lcdm001]
|
||||||
|
# LCDM driver
|
||||||
|
|
||||||
|
Arguments="-d /dev/lcd"
|
||||||
|
|
||||||
|
# -d Select the output device to use [/dev/lcd]
|
||||||
|
# -h Show this help information
|
||||||
|
|
||||||
|
|
||||||
[T6963]
|
|
||||||
# Toshiba T6963 driver
|
[lirc]
|
||||||
|
# Lirc input driver
|
||||||
|
|
||||||
|
# No options
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
[MtxOrb]
|
||||||
|
# Matrix Orbital driver
|
||||||
|
|
||||||
|
Arguments="-d /dev/ttyS0 -t 20x2 -c 120"
|
||||||
|
|
||||||
|
# -d Select the output device to use [/dev/lcd]
|
||||||
|
# -t Select the LCD type (size) [20x4]
|
||||||
|
# // UNAVAILABLE: -b --backlight Select the backlight state [on]
|
||||||
|
# -c Set the initial contrast [140]
|
||||||
|
# -s Set the communication speed [19200]
|
||||||
|
# -h Show this help information
|
||||||
|
# -b display type: lcd, lkd, vfd, vkd\n
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
[SED1330]
|
||||||
|
# Seiko Epson 1330 driver
|
||||||
|
|
||||||
|
Port=0x378
|
||||||
|
# Port where the LPT is. Usual values are 0x278, 0x378 and 0x3BC
|
||||||
|
|
||||||
|
Type=G321D
|
||||||
|
#Type=G121C
|
||||||
|
#Type=G242C
|
||||||
|
# Type of LCD module. G321D is the only one that is tested currently.
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
[SED1520]
|
||||||
|
# Seiko Epson 1520 driver
|
||||||
|
|
||||||
|
Arguments="-p 0x278"
|
||||||
|
|
||||||
|
# -p n --port n Select the output device to use port n
|
||||||
|
# -h --help Show this help information
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
[stv5730]
|
||||||
|
# stv5730 driver
|
||||||
|
|
||||||
|
Arguments="fill in here"
|
||||||
|
|
||||||
|
# -p n --port n Select the output device to use port n
|
||||||
|
# -h --help Show this help information
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
[svgalib]
|
[svgalib]
|
||||||
# SVGAlib driver
|
# SVGAlib driver
|
||||||
|
|
||||||
|
# No options
|
||||||
|
|
||||||
[curses]
|
|
||||||
# Curses driver
|
|
||||||
Arguments="-f blue -b cyan -B red -t 20x4"
|
|
||||||
|
|
||||||
# Meaning:
|
|
||||||
# -f <color> Foreground color
|
[T6963]
|
||||||
# -b <color> Background color
|
# Toshiba T6963 driver
|
||||||
# -B Big numbers size?
|
|
||||||
# -t Display size
|
Arguments="fill in here"
|
||||||
|
|
||||||
|
# -p --port Select the output port to use [0x378]
|
||||||
|
# -t --type Select the LCD type (size) [20x6]
|
||||||
|
# -h --help Show this help information
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
[text]
|
||||||
|
# Text driver
|
||||||
|
|
||||||
|
# No options
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
[Wirz-sli]
|
||||||
|
# Wirz SLI LCD driver
|
||||||
|
|
||||||
|
Arguments="fill in here"
|
||||||
|
|
||||||
|
# -d --device Select the output device to use [/dev/lcd]
|
||||||
|
# -s --speed Set the communication speed [19200]
|
||||||
|
# -h --help Show this help information
|
||||||
|
|||||||
Reference in New Issue
Block a user