2001-10-03 17:10:38 +04:00
|
|
|
/////////////////////////////////////////////////////////////////////////
|
2004-03-20 15:42:13 +03:00
|
|
|
// $Id: serial_raw.h,v 1.9 2004-03-20 12:42:13 vruppert Exp $
|
2001-10-03 17:10:38 +04:00
|
|
|
/////////////////////////////////////////////////////////////////////////
|
|
|
|
//
|
2004-01-18 04:30:14 +03:00
|
|
|
|
|
|
|
#if USE_RAW_SERIAL
|
|
|
|
|
2004-01-18 14:58:07 +03:00
|
|
|
#ifdef __linux__
|
2001-06-16 23:27:41 +04:00
|
|
|
#include <linux/serial.h>
|
2004-01-18 14:58:07 +03:00
|
|
|
#endif
|
2001-06-16 23:27:41 +04:00
|
|
|
|
2004-02-28 16:10:57 +03:00
|
|
|
#define P_NONE 0
|
|
|
|
#define P_ODD 1
|
|
|
|
#define P_EVEN 2
|
|
|
|
#define P_HIGH 3
|
|
|
|
#define P_LOW 4
|
2001-06-16 23:27:41 +04:00
|
|
|
#define C_BREAK 201
|
|
|
|
|
|
|
|
class serial_raw : public logfunctions {
|
|
|
|
public:
|
2004-01-18 14:58:07 +03:00
|
|
|
serial_raw (char *devname);
|
|
|
|
~serial_raw (void);
|
2001-06-16 23:27:41 +04:00
|
|
|
void set_baudrate (int rate);
|
|
|
|
void set_data_bits (int );
|
|
|
|
void set_stop_bits (int);
|
2004-02-28 16:10:57 +03:00
|
|
|
void set_parity_mode (int mode);
|
2004-02-29 00:28:28 +03:00
|
|
|
void set_break (int mode);
|
2004-03-09 00:51:19 +03:00
|
|
|
void set_modem_control (int ctrl);
|
|
|
|
int get_modem_status ();
|
2004-03-20 15:42:13 +03:00
|
|
|
void transmit (Bit8u byte);
|
|
|
|
bx_bool ready_transmit ();
|
|
|
|
bx_bool ready_receive ();
|
|
|
|
Bit8u receive ();
|
2004-03-09 00:51:19 +03:00
|
|
|
|
2004-02-29 00:28:28 +03:00
|
|
|
private:
|
2004-03-09 00:51:19 +03:00
|
|
|
void setup_port ();
|
2004-02-29 00:28:28 +03:00
|
|
|
bx_bool present;
|
2004-03-17 20:08:57 +03:00
|
|
|
Bit8u rxdata_count;
|
2004-02-29 00:28:28 +03:00
|
|
|
#ifdef WIN32
|
2004-03-09 00:51:19 +03:00
|
|
|
HANDLE hCOM;
|
2004-02-29 00:28:28 +03:00
|
|
|
DCB dcb;
|
|
|
|
BOOL DCBchanged;
|
|
|
|
#endif
|
2001-06-16 23:27:41 +04:00
|
|
|
};
|
2004-01-18 04:30:14 +03:00
|
|
|
#endif
|