2005-04-14 11:40:41 +00:00
|
|
|
/***************************************************************************
|
|
|
|
* __________ __ ___.
|
|
|
|
* Open \______ \ ____ ____ | | _\_ |__ _______ ___
|
|
|
|
* Source | _// _ \_/ ___\| |/ /| __ \ / _ \ \/ /
|
|
|
|
* Jukebox | | ( <_> ) \___| < | \_\ ( <_> > < <
|
|
|
|
* Firmware |____|_ /\____/ \___ >__|_ \|___ /\____/__/\_ \
|
|
|
|
* \/ \/ \/ \/ \/
|
|
|
|
* $Id$
|
|
|
|
*
|
2008-05-05 10:32:46 +00:00
|
|
|
* Copyright (C) 2005 by Richard S. La Charité III
|
2005-04-14 11:40:41 +00:00
|
|
|
*
|
2008-06-28 18:10:04 +00:00
|
|
|
* This program is free software; you can redistribute it and/or
|
|
|
|
* modify it under the terms of the GNU General Public License
|
|
|
|
* as published by the Free Software Foundation; either version 2
|
|
|
|
* of the License, or (at your option) any later version.
|
2005-04-14 11:40:41 +00:00
|
|
|
*
|
|
|
|
* This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY
|
|
|
|
* KIND, either express or implied.
|
|
|
|
*
|
|
|
|
****************************************************************************/
|
2005-04-15 09:42:12 +00:00
|
|
|
|
|
|
|
#include "lcd-remote.h"
|
2005-06-23 16:53:54 +00:00
|
|
|
|
2008-03-09 18:27:12 +00:00
|
|
|
/* Compile 1 bit vertical packing LCD driver for remote LCD */
|
|
|
|
#define LCDFN(fn) lcd_remote_ ## fn
|
|
|
|
#define FBFN(fn) fb_remote_ ## fn
|
|
|
|
#define LCDM(ma) LCD_REMOTE_ ## ma
|
2008-04-12 07:53:33 +00:00
|
|
|
#define LCDNAME "lcd_remote_"
|
2005-04-25 23:47:51 +00:00
|
|
|
|
2008-03-09 18:27:12 +00:00
|
|
|
#include "lcd-1bit-vert.c"
|