fix uart recv in non-intr mode
[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 void uart_host_rx_event(char c)
38 {
39         /* only one uart */
40         if (rx_event[0])
41                 rx_event[0](c);
42 }
43
44 void uart_host_tx_event(char c)
45 {
46         /* only one uart */
47         if (tx_event[0])
48                 tx_event[0](c);
49 }
50
51 int8_t uart_setconf(uint8_t num, struct uart_config *u)
52 {
53         /* XXX todo */
54         return 0;
55 }
56
57 void uart_getconf(uint8_t num, struct uart_config *u)
58 {
59         return;
60 }
61
62 int uart_recv(uint8_t num)
63 {
64         return getchar();
65 }
66
67 /* XXX should not wait */
68 int uart_recv_nowait(uint8_t num)
69 {
70         return getchar();
71 }
72
73 int uart_send_nowait(uint8_t num, char c)
74 {
75         return putchar(c);
76 }
77
78 int uart_send(uint8_t num, char c)
79 {
80         return putchar(c);
81 }