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 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92
|
/*
Copyright (C) 1998,1999,2000,2001 T. Scott Dattalo
This file is part of gpsim.
gpsim 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 2, or (at your option)
any later version.
gpsim 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 gpsim; see the file COPYING. If not, write to
the Free Software Foundation, 59 Temple Place - Suite 330,
Boston, MA 02111-1307, USA. */
#ifndef __USART_MODULE_H__
#define __USART_MODULE_H__
/* IN_MODULE should be defined for modules */
#define IN_MODULE
#include "../config.h"
#ifdef HAVE_GUI
#define GTK_ENABLE_BROKEN
#include <gtk/gtk.h>
#endif
#include <glib.h>
#include "../src/modules.h"
class TXREG;
class RCREG;
class RxBaudRateAttribute;
class TxBaudRateAttribute;
class TxBuffer;
class RxBuffer;
class Boolean;
class USARTModule : public Module
{
public:
#ifdef HAVE_GUI
GtkWidget *window, *text;
#endif // HAVE_GUI
void CreateGraphics(void);
virtual void show_tx(unsigned int data);
virtual void SendByte(unsigned tx_byte);
// Inheritances from the Package class
virtual void create_iopin_map();
USARTModule(const char *new_name);
~USARTModule();
static Module *USART_construct(const char *new_name=NULL);
virtual void new_rx_edge(unsigned int);
virtual bool mGetTxByte(unsigned int &);
virtual void newRxByte(unsigned int);
virtual void get(char *, int len);
private:
RxBaudRateAttribute *m_RxBaud;
TxBaudRateAttribute *m_TxBaud;
Boolean *m_CRLF;
Boolean *m_loop;
Boolean *m_console;
TxBuffer *m_TxBuffer;
RxBuffer *m_RxBuffer;
RCREG *m_rcreg;
TXREG *m_txreg;
unsigned char * m_TxFIFO;
int m_FifoLen;
int m_FifoHead;
int m_FifoTail;
};
#endif // __USART_MODULE_H__
|