blob: 54cbe5a489d778083a9354dfd7c83152677aa4d2 (
plain) (
tree)
|
|
/* SPDX-License-Identifier: GPL-2.0-or-later */
#define DEFAULT_LCD_BWIDTH 40
#define DEFAULT_LCD_HWIDTH 64
struct hd44780_common {
int ifwidth; /* 4-bit or 8-bit (default) */
int bwidth; /* Default set by hd44780_alloc() */
int hwidth; /* Default set by hd44780_alloc() */
void *hd44780;
};
struct hd44780_common *hd44780_common_alloc(void);
|