~benklop/+junk/lcdproc

« back to all changes in this revision

Viewing changes to server/drivers/hd44780-usblcd.h

  • 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
#ifndef HD_USBLCD_H
 
2
#define HD_USBLCD_H
 
3
 
 
4
#include "lcd.h"                          /* for lcd_logical_driver */
 
5
#include "hd44780-low.h"                  /* for HD44780_functions */
 
6
 
 
7
// initialise this particular driver, args is probably not used but keep
 
8
// for consistency
 
9
int hd_init_usblcd(Driver *drvthis);
 
10
 
 
11
#endif