diff options
author | andreas 'randy' weinberger <vdr@smue.org> | 2010-02-21 19:58:27 +0100 |
---|---|---|
committer | andreas 'randy' weinberger <vdr@smue.org> | 2010-02-21 19:58:27 +0100 |
commit | 10ab31fa86dbf9875b5f6baa6ac59fefaaf86be3 (patch) | |
tree | 60ad7c856565f03e145b2996d1bb5f9cd64c0532 /glcddrivers/gu256x64-372.h | |
download | graphlcd-base-10ab31fa86dbf9875b5f6baa6ac59fefaaf86be3.tar.gz graphlcd-base-10ab31fa86dbf9875b5f6baa6ac59fefaaf86be3.tar.bz2 |
initial git upload, based on graphlcd-base-0.1.5
Diffstat (limited to 'glcddrivers/gu256x64-372.h')
-rw-r--r-- | glcddrivers/gu256x64-372.h | 73 |
1 files changed, 73 insertions, 0 deletions
diff --git a/glcddrivers/gu256x64-372.h b/glcddrivers/gu256x64-372.h new file mode 100644 index 0000000..f685f7d --- /dev/null +++ b/glcddrivers/gu256x64-372.h @@ -0,0 +1,73 @@ +/* + * GraphLCD driver library + * + * gu256x64-372.h - 8-bit driver module for Noritake GU256x64-372 + * VFD displays. The VFD is operating in its 8-bit + * mode connected to a single PC parallel port. + * + * based on: + * gu256x32f driver module for graphlcd + * (c) 2003 Andreas Brachold <vdr04 AT deltab.de> + * HD61830 device + * (c) 2001-2003 by Carsten Siebholz <c.siebholz AT t-online.de> + * lcdproc 0.4 driver hd44780-ext8bit + * (c) 1999, 1995 Benjamin Tse <blt AT comports.com> + * + * This file is released under the GNU General Public License. Refer + * to the COPYING file distributed with this package. + * + * (c) 2004 Andreas 'randy' Weinberger (randy AT smue.org) + */ + +#ifndef _GLCDDRIVERS_GU256X64_372_H_ +#define _GLCDDRIVERS_GU256X64_372_H_ + +#include "driver.h" + +namespace GLCD +{ + +class cDriverConfig; +class cParallelPort; + +class cDriverGU256X64_372 : public cDriver +{ + cParallelPort * port; + + cDriverConfig * config; + cDriverConfig * oldConfig; + + int m_iSizeYb; + int m_nRefreshCounter; + + unsigned char ** m_pDrawMem; // the draw "memory" + unsigned char ** m_pVFDMem; // the double buffed display "memory" + + long m_nTimingAdjustCmd; + bool m_bSleepIsInit; + + int CheckSetup(); + +protected: + void ClearVFDMem(); + void SetPixel(int x, int y); + void GU256X64Cmd(unsigned char data); + void GU256X64Data(unsigned char data); + +public: + cDriverGU256X64_372(cDriverConfig * config); + virtual ~cDriverGU256X64_372(); + + virtual int Init(); + virtual int DeInit(); + + virtual void Clear(); + virtual void Set8Pixels(int x, int y, unsigned char data); + virtual void Refresh(bool refreshAll = false); + + virtual void SetBrightness(unsigned int percent); +}; + +} // end of namespace + +#endif |