$treeview $search $mathjax $extrastylesheet
avr-libc
2.0.0
$projectbrief
|
$projectbrief
|
$searchbox |
AVR Libc Home Page |
AVR Libc Development Pages |
||||
Main Page |
User Manual |
Library Reference |
FAQ |
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$ 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);