bt_mt_rs232.h
上传用户:gelin96
上传日期:2017-01-08
资源大小:20993k
文件大小:1k
- #ifndef _BT_MT_RS232_H_
- #define _BT_MT_RS232_H_
- //=============================================================================
- #include "rs232.h"
- #ifndef _BT_MT_COMMON_H_
- #include "bt_mt_common.h"
- #endif
- //-----------------------------------------------
- class CBTMTRS232
- {
- protected:
- void ConsumeErrorEvent(void);
- public:
- CRS232 rs232;
- unsigned char EventBuf[HCIEVENTBUFSIZE]; // binary format
- int EventLen;
- int EventType;
- public:
- CBTMTRS232(void);
- CBTMTRS232(int port_no, int ena_flowctrl);
- int SendCommand(unsigned char *command, int len);
- int ReadEvent(void);
- bool SetTransport(int port_no, long baudrate, int ena_flowctrl);
- };
- //=============================================================================
- #endif