remove ~files
[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
28 /* this file os a stub for host */
29
30 void uart_init(void)
31 {
32 }
33
34 /* global vars are initialized to 0 (NULL) */
35 event *rx_event[UART_HW_NUM];
36 event *tx_event[UART_HW_NUM];
37
38 int8_t uart_setconf(uint8_t num, struct uart_config *u)
39 {
40         return 0;
41 }
42
43 void uart_getconf(uint8_t num, struct uart_config *u)
44 {
45 }
46
47 int uart_recv(uint8_t num)
48 {
49         return getchar();
50 }
51
52 int uart_send_nowait(uint8_t num, char c)
53 {
54         return putchar(c);
55 }
56
57 int uart_send(uint8_t num, char c)
58 {
59         return put_char(c);
60 }
61
62 void uart_register_tx_event(uint8_t num, void (*f)(char))
63
64         tx_event = f;
65 }
66
67 void uart_register_rx_event(uint8_t num, void (*f)(char))
68 {
69         rx_event = f;
70 }