1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76
|
/*
uart_pty.h
Copyright 2012 Michel Pollet <buserror@gmail.com>
This file is part of simavr.
simavr is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation, either version 3 of the License, or
(at your option) any later version.
simavr is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with simavr. If not, see <http://www.gnu.org/licenses/>.
*/
#ifndef __UART_PTY_H___
#define __UART_PTY_H___
#include <pthread.h>
#include "sim_irq.h"
#include "fifo_declare.h"
enum {
IRQ_UART_PTY_BYTE_IN = 0,
IRQ_UART_PTY_BYTE_OUT,
IRQ_UART_PTY_COUNT
};
DECLARE_FIFO(uint8_t,uart_pty_fifo, 512);
typedef struct uart_pty_port_t {
int tap : 1, crlf : 1;
int s; // socket we chat on
char slavename[64];
uart_pty_fifo_t in;
uart_pty_fifo_t out;
uint8_t buffer[512];
size_t buffer_len, buffer_done;
} uart_pty_port_t, *uart_pty_port_p;
typedef struct uart_pty_t {
avr_irq_t * irq; // irq list
struct avr_t *avr; // keep it around so we can pause it
pthread_t thread;
int xon;
union {
struct {
uart_pty_port_t pty;
uart_pty_port_t tap;
};
uart_pty_port_t port[2];
};
} uart_pty_t;
void
uart_pty_init(
struct avr_t * avr,
uart_pty_t * b);
void
uart_pty_stop(uart_pty_t * p);
void
uart_pty_connect(
uart_pty_t * p,
char uart);
#endif /* __UART_PTY_H___ */
|