revert test serpi
[aversive.git] / modules / comm / uart / uart_host.c
1 /*  
2  *  Copyright Droids Corporation, Microb Technology, Eirbot (2005)
3  * 
4  *  This program is free software; you can redistribute it and/or modify
5  *  it under the terms of the GNU General Public License as published by
6  *  the Free Software Foundation; either version 2 of the License, or
7  *  (at your option) any later version.
8  *
9  *  This program is distributed in the hope that it will be useful,
10  *  but WITHOUT ANY WARRANTY; without even the implied warranty of
11  *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
12  *  GNU General Public License for more details.
13  *
14  *  You should have received a copy of the GNU General Public License
15  *  along with this program; if not, write to the Free Software
16  *  Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
17  *
18  *  Revision : $Id: uart_host.c,v 1.3.4.3 2008-12-27 16:29:08 zer0 Exp $
19  *
20  */
21
22 /* Olivier MATZ, Droids-corp 2004 - 2009 */
23
24 #include <uart.h>
25 #include <uart_private.h>
26
27 /* this file os a stub for host */
28
29 void uart_init(void)
30 {
31 }
32
33 /* global vars are initialized to 0 (NULL) */
34 event *rx_event[UART_HW_NUM];
35 event *tx_event[UART_HW_NUM];
36
37 int8_t uart_setconf(uint8_t num, struct uart_config *u)
38 {
39         return 0;
40 }
41
42 void uart_getconf(uint8_t num, struct uart_config *u)
43 {
44 }
45
46 int uart_recv(uint8_t num)
47 {
48         return getchar();
49 }
50
51 int uart_send_nowait(uint8_t num, char c)
52 {
53         return putchar(c);
54 }
55
56 int uart_send(uint8_t num, char c)
57 {
58         return put_char(c);
59 }
60