AVR Libc Home Page | AVR Libc Development Pages | ||||
Main Page | User Manual | Library Reference | FAQ | Alphabetical Index | Example Projects |
00001 /* 00002 * ---------------------------------------------------------------------------- 00003 * "THE BEER-WARE LICENSE" (Revision 42): 00004 * <joerg@FreeBSD.ORG> wrote this file. As long as you retain this notice you 00005 * can do whatever you want with this stuff. If we meet some day, and you think 00006 * this stuff is worth it, you can buy me a beer in return. Joerg Wunsch 00007 * ---------------------------------------------------------------------------- 00008 * 00009 * Stdio demo, upper layer of LCD driver. 00010 * 00011 * $Id: lcd.h 1008 2005-12-28 21:38:59Z joerg_wunsch $ 00012 */ 00013 00014 /* 00015 * Initialize LCD controller. Performs a software reset. 00016 */ 00017 void lcd_init(void); 00018 00019 /* 00020 * Send one character to the LCD. 00021 */ 00022 int lcd_putchar(char c, FILE *stream);