Obsolete unused backup project such as OK6410
guowenxue
2018-02-04 00cb813bffdc9876ae03ff0b967be3b1912f2454
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
/********************************************************************************************
 *        File:  serial.h
 *     Version:  1.0.0
 *   Copyright:  2013 (c) Guo Wenxue <guowenxue@gmail.com>
 * Description:  The UART on board drivers/functions.
 *   ChangeLog:  1, Release initial version on "Mon Feb 25 22:58:49 CST 2013"
 *
 *******************************************************************************************/
 
#ifndef __SERIAL_H__
#define __SERIAL_H__
 
int serial_init(int baudrate);
void serial_putc(const char ch);
void serial_puts(const char *str);
 
#endif /* end of __SERIAL_H__ */