Add new SureElec driver by Laurent Latil.

This commit is contained in:
mmdolze
2009-11-29 09:09:02 +00:00
parent 73b7ec00ff
commit 7eb3d4e5b8
12 changed files with 1222 additions and 3 deletions
+1
View File
@@ -46,6 +46,7 @@ well as the configuration of LCDd.
&shuttleVFD;
&sli;
&stv5730;
&SureElec;
&svga;
&t6963;
&text;
+1
View File
@@ -40,6 +40,7 @@ EXTRA_DIST = bayrad.docbook \
shuttleVFD.docbook \
sli.docbook \
stv5730.docbook \
SureElec.docbook \
svga.docbook \
t6963.docbook \
text.docbook \
@@ -0,0 +1,94 @@
<sect1 id="SureElec">
<title>The SureElec Driver</title>
<para>
Driver for the LCD modules (actually the controller board) available from
the 'SURE electronics' shop (<ulink url="http://www.sureelectronics.net/"></ulink>).
</para>
<para>
These devices are PIC based controlled, using a serial communication
protocol with the host. The actual connection to host is done through
USB through a serial-to-USB converter (CP2102 USB to UART Bridge)
integrated on the board.
</para>
<sect2 id="SureElec-config">
<title>Configuration in LCDd.conf</title>
<sect3 id="SureElec-config-section">
<title>[SureElec]</title>
<variablelist>
<varlistentry>
<term>
<property>Port</property> =
<parameter><replaceable>PORT</replaceable></parameter>
</term>
<listitem><para>
Port the device is connected to. By default first USB serial port
<literal>/dev/ttyUSB0</literal> is used.
</para></listitem>
</varlistentry>
<varlistentry>
<term>
<property>Edition</property> =
<parameter><replaceable>EDITION</replaceable></parameter>
</term>
<listitem><para>
Edition level of the device (can be 1, 2 or 3). The default is <literal>2</literal>.
</para></listitem>
</varlistentry>
<varlistentry>
<term>
<property>Size</property> = &parameters.size;
</term>
<listitem><para>
Set the display size in characters. This is required for edition 1 devices.
For edition 2 &amp; 3 devices this value, if defined, overrides the size
read directly from the device.
</para></listitem>
</varlistentry>
<varlistentry>
<term>
<property>Contrast</property> =
<parameter><replaceable>CONTRAST</replaceable></parameter>
</term>
<listitem><para>
Select the display's contrast, <literal>480</literal> is the default.
Permissible values are in the range of <literal>0</literal>-<literal>1000</literal>.
</para></listitem>
</varlistentry>
<varlistentry>
<term>
<property>Brightness</property> =
<parameter><replaceable>BRIGHTNESS</replaceable></parameter>
</term>
<listitem><para>
Select the display's brightness, <literal>480</literal> is the default.
Permissible values are in the range of <literal>0</literal>-<literal>1000</literal>.
</para></listitem>
</varlistentry>
<varlistentry>
<term>
<property>OffBrightness</property> =
<parameter><replaceable>OFFBRIGHTNESS</replaceable></parameter>
</term>
<listitem><para>
Select the display's when the display is normally switched off in case LCDd
is inactive, <literal>100</literal> is the default.
Permissible values are in the range of <literal>0</literal>-<literal>1000</literal>.
</para></listitem>
</varlistentry>
</variablelist>
</sect3>
</sect2>
</sect1>
+1
View File
@@ -54,6 +54,7 @@
<!ENTITY shuttleVFD SYSTEM "drivers/shuttleVFD.docbook">
<!ENTITY sli SYSTEM "drivers/sli.docbook">
<!ENTITY stv5730 SYSTEM "drivers/stv5730.docbook">
<!ENTITY SureElec SYSTEM "drivers/SureElec.docbook">
<!ENTITY svga SYSTEM "drivers/svga.docbook">
<!ENTITY t6963 SYSTEM "drivers/t6963.docbook">
<!ENTITY text SYSTEM "drivers/text.docbook">