int fd=open( "/dev/ttyS0",O_RDWR|O_NOCTTY|O_NDELAY);//打开串口 opt.c_cflag|=CLOCAL|CREAD; //激活选项有CLOCAL和CREAD cfsetispeed(&opt, B115200);//设置波特率,使用函数cfsetispeed、 cfsetospee cfsetospeed(&opt, B115200); opt.c_cflag&=~CSIZE; //设置数据位,需使用掩码设置。 opt.c...