uart_pty: New part
[simavr] / examples / parts / uart_pty.h
1 /*
2         uart_pty.h
3
4         Copyright 2012 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_PTY_H___
24 #define __UART_PTY_H___
25
26 #include "sim_irq.h"
27 #include "fifo_declare.h"
28
29 enum {
30         IRQ_UART_PTY_BYTE_IN = 0,
31         IRQ_UART_PTY_BYTE_OUT,
32         IRQ_UART_PTY_COUNT
33 };
34
35 DECLARE_FIFO(uint8_t,uart_pty_fifo, 512);
36
37 typedef struct uart_pty_t {
38         avr_irq_t *     irq;            // irq list
39         struct avr_t *avr;              // keep it around so we can pause it
40
41         pthread_t       thread;
42         int             s;                      // socket we chat on
43         char            slavename[64];
44         int                     xon;
45         uart_pty_fifo_t in;
46         uart_pty_fifo_t out;
47
48         uint8_t         buffer[512];
49         size_t          buffer_len, buffer_done;
50 } uart_pty_t;
51
52 void uart_pty_init(struct avr_t * avr, uart_pty_t * b);
53 void uart_pty_stop(uart_pty_t * p);
54
55 void uart_pty_connect(uart_pty_t * p, char uart);
56
57 #endif /* __UART_PTY_H___ */