00001 /** 00002 * @file usart.h 00003 * @brief Serial interface functions header 00004 * @author Copyright (C) Peter Ivanov, 2010 00005 * 00006 * Created: 2010-08-07 11:58:45 00007 * Last modify: 2010-08-07 11:59:35 ivanovp {Time-stamp} 00008 * Licence: GPL 00009 */ 00010 #ifndef __INCLUDE_USART_H 00011 #define __INCLUDE_USART_H 00012 00013 void USART0_init (void); 00014 unsigned char USART0_getc (void); 00015 void USART0_putc (unsigned char data); 00016 void USART0_puts (const char *data); 00017 void USART0_printf (const char *fmt, ...); 00018 00019 #endif // __INCLUDE_USART_H
1.6.3