Files
lcdproc/server/drivers
mmdolze de7a132fbb Rewrote the t6963 driver:
- Limit the maximum size to 40x16 (240x128 pixel) and change the RAM locations
to make use of 8 KB only. (If one's display is larger and has more memory this
may have to be changed.)
- Drive control lines using defines from lpt-port.h without using a function.
- Use timing.h for delays (which are now optional).
- Remove any use of the graphic area and mode settings, except for optionally
clearing of graphic memory on start-up.
- Remove any cursor related stuff.
- Handle displays correctly which width (in pixels) is not a multiple of the
cellwidth (e.g. 128x64).
- Remove double buffering (display updates are already really fast).
- Update text and font memory using AUTO WRITE function.
- Remove the bignum stub. Now at least something is displayed.
- Fix character offset for bar graphs.
- Make local functions static and inline the most commonly used read / write
functions.
2011-01-21 06:59:37 +00:00
..
2010-02-13 16:43:15 +00:00
2010-02-13 16:43:15 +00:00
2010-02-13 16:43:15 +00:00
2011-01-05 23:34:37 +00:00
2006-10-31 16:19:44 +00:00
2007-04-04 13:52:38 +00:00
2007-04-04 13:52:38 +00:00
2007-04-04 13:52:38 +00:00
2007-04-04 13:52:38 +00:00
2007-04-04 13:52:38 +00:00
2008-11-30 22:34:31 +00:00
2010-02-02 23:20:29 +00:00
2007-11-15 19:33:45 +00:00
2007-11-15 19:33:45 +00:00
2007-11-15 19:33:45 +00:00
2006-09-30 18:18:22 +00:00
2010-02-02 23:20:29 +00:00
2010-02-02 23:20:29 +00:00
2006-04-08 20:35:51 +00:00
2008-12-21 18:50:39 +00:00
2006-09-30 18:18:22 +00:00
2001-12-30 00:15:25 +00:00
2006-04-13 21:22:33 +00:00
2002-02-22 00:21:05 +00:00
2010-12-09 21:25:42 +00:00
2010-12-09 21:25:42 +00:00
2010-12-09 21:25:42 +00:00
2010-12-09 21:25:42 +00:00
2010-02-02 23:20:29 +00:00
2011-01-21 06:59:37 +00:00
2011-01-21 06:59:37 +00:00

UNDERSTANDING LCDPROC DRIVERS

LCDproc drivers are compiled as modules that will be loaded by the
LCDd daemon's core on request.

To understand how to write a driver see docs/API-0.5.txt or the
section about the driver API in the Developer's Guide.