⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 serial.h

📁 一个linux下的用QT2编写的关于gprs的发短信,拨打电话的源码
💻 H
字号:
#ifndef _SERIAL_H_#define _SERIAL_H_#include <stdio.h>#include <string.h>#include <sys/types.h>#include <sys/stat.h>#include <fcntl.h>#include <unistd.h>#include <termios.h>#include <stdlib.h>#include <errno.h>class MySerial{public:    MySerial();    ~MySerial();public:	static int set_opt(int fd,int nSpeed, int nBits, char nEvent, int nStop);	static int open_port(int fd,int comport);	static int nwrite(int serialfd,const char *data,int datalength);};#endif

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -