ee99505efe3b2050d1f5f0dce40d82bb659d5625
[simavr] / examples / parts / uart_udp.h
1 /*
2         uart_udp.h
3
4         Copyright 2008, 2009 Michel Pollet <buserror@gmail.com>
5
6         This file is part of simavr.
7
8         simavr is free software: you can redistribute it and/or modify
9         it under the terms of the GNU General Public License as published by
10         the Free Software Foundation, either version 3 of the License, or
11         (at your option) any later version.
12
13         simavr is distributed in the hope that it will be useful,
14         but WITHOUT ANY WARRANTY; without even the implied warranty of
15         MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
16         GNU General Public License for more details.
17
18         You should have received a copy of the GNU General Public License
19         along with simavr.  If not, see <http://www.gnu.org/licenses/>.
20  */
21
22
23 #ifndef __UART_UDP_H___
24 #define __UART_UDP_H___
25
26 #include "sim_network.h"
27 #include "sim_irq.h"
28 #include "fifo_declare.h"
29
30 enum {
31         IRQ_UART_UDP_BYTE_IN = 0,
32         IRQ_UART_UDP_BYTE_OUT,
33         IRQ_UART_UDP_COUNT
34 };
35
36 DECLARE_FIFO(uint8_t,uart_udp_fifo, 512);
37
38 typedef struct uart_udp_t {
39         avr_irq_t *     irq;            // irq list
40         struct avr_t *avr;              // keep it around so we can pause it
41
42         pthread_t       thread;
43         int             s;                      // socket we chat on
44         struct sockaddr_in peer;
45
46         int                     xon;
47         uart_udp_fifo_t in;
48         uart_udp_fifo_t out;
49 } uart_udp_t;
50
51 void uart_udp_init(struct avr_t * avr, uart_udp_t * b);
52
53 void uart_udp_connect(uart_udp_t * p, char uart);
54
55 #endif /* __UART_UDP_H___ */