~benklop/+junk/lcdproc

« back to all changes in this revision

Viewing changes to server/drivers/mtc_s16209x.c

  • Committer: Bazaar Package Importer
  • Author(s): Jeremy Yoder (Launchpad)
  • Date: 2009-10-11 18:21:07 UTC
  • mfrom: (1.1.4 upstream)
  • Revision ID: james.westby@ubuntu.com-20091011182107-twnkyhv1f63lzq3o
Tags: 0.5.3-0ubuntu1
* New upstream version 0.5.3 (LP: #432669)
* Merge source patches from 0.5.2-3 
  - LCDd.conf: Change driver path
  - clients/lcdproc/machine_Linux.c: Change ifdef
* Add clients/examples/lcdident.pl to debian files 
* Updated debian/rules:
  - Cleaned up whitespace
  - Changed config.guess/config.sub lines 
* Added a delay to server/drivers/imonlcd.c for slower models
* Added dependency on autotools-dev to fix launchpad build issue 

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/** \file server/drivers/mtc_s16209x.c
 
2
 * LCDd \c mtc_s16209x driver for the MTC_S16209x LCD display by Microtips Technology Inc.
 
3
 */
 
4
 
1
5
/*
2
6
 * LCD Driver for MTC_S16209x LCD display, used with lcdproc (lcdproc.org)
3
7
 * Copyright (C) 2002 SecureCiRT, A SBU of Z-Vance Pte Ltd (Singapore)
91
95
} custom_type;
92
96
 
93
97
 
94
 
typedef struct driver_private_data {
 
98
/** private data for the \c mtc_s16209x driver */
 
99
typedef struct MTC_S16209X_private_data {
95
100
  char device[256];
96
101
  int fd;
97
102
  char framebuf[2][16];