我正在尝试从C ++程序写入Arduino序列。如何在C ++程序中设置波特率?当arduino设置为9600时,通信似乎可以正常工作,但是按预期进行更改时通信失败。(所以9600是默认值?)使用以下命令查看输出: 屏幕/ dev / ttyUSBx 115200 使用示例程序在Arduino上回显所有内容:
* serial_echo.pde
* -----------------
* Echoes what is sent back through the serial port.
*
* http://spacetinkerer.blogspot.com
*/
int incomingByte = 0; // for incoming serial data
void setup() {
Serial.begin(115200); // opens serial port, sets data rate to 9600 bps
}
void loop() {
// send data only when you receive data:
if (Serial.available() > 0) ;
// read the incoming byte:
incomingByte = Serial.read();
// say what you got:
Serial.print((char)incomingByte);
}
,C ++代码为:
#include <iostream>
#include <stdio.h>
#include <string>
#include <unistd.h>
#include <string.h>
#include <fcntl.h>
using namespace std;
string comArduino(string outmsg = " hello"){
#define comports_size 3
static int fd_ard;
static bool init = false;
//char buffer[256];
if(!init){
string comports[] = { "/dev/ttyUSB0","/dev/ttyUSB1","/dev/ttyUSB2" };
for(int i = 0; i < comports_size; i++){
fd_ard = open(comports[i].c_str(), O_RDWR | O_NOCTTY | O_NDELAY);
if (fd_ard != -1) {
cout<<"connected to "<<comports[i]<<endl;
init = true;
break;
}
else{
perror ("open");
}
if(i == (comports_size - 1)){
cout<<"can't connect to arduino [ ER ]\n"<<endl;
return "";
}
}
}
int Er = write(fd_ard,outmsg.c_str(),strlen(outmsg.c_str()));
if(Er < strlen(outmsg.c_str())){
perror ("write ");
init = false;
}
else
cout<<"write ok"<<endl;
return "";
}
int main(){
while(1){
comArduino();
sleep(1);
}
}
编辑:需要在open()
之后添加以下行以正确配置串行:
struct termios PortConf;
// write port configuration, as ' stty -F /dev/ttyUSB0 -a ' returned after opening the port with the arduino IDE.
tcgetattr(fd_ard, &PortConf); // Get the current attributes of the Serial port
PortConf.c_cflag = 0; //set cflag
PortConf.c_cflag |= (CS8 | HUPCL | CREAD | CLOCAL);
PortConf.c_iflag = 0; //set iflag
//PortConf.c_iflag &= ~(ISIG | ICANON | IEXTEN);
PortConf.c_oflag = 0; //set oflag
PortConf.c_oflag |= (ONLCR | CR0 | TAB0 | BS0 | VT0 | FF0); //NR0 is supposed to be set, but won't compile
//PortConf.c_oflag &= ~(OPOST);
PortConf.c_lflag = 0; //set lflag
//PortConf.c_lflag &= ~(ECHO | ECHOE);
PortConf.c_cc[VMIN] = 0;
PortConf.c_cc[VTIME] = 0;
cfsetispeed(&PortConf,B115200); // Set Read Speed as 115200
cfsetospeed(&PortConf,B115200); // Set Write Speed as 115200
if((tcsetattr(fd_ard,TCSANOW,&PortConf)) != 0){ // Set the attributes to the termios structure
printf("Error while setting attributes \n");
return "";
}
答案 0 :(得分:1)
您需要使用termios结构来设置所用端口的波特率。
使用“ man termios”获得有关termios结构的更多信息
因此,开始需要添加
#include <termios.h>
在代码顶部。
稍后打开端口时:
fd_ard = open(comports[i].c_str(), O_RDWR | O_NOCTTY | O_NDELAY);
您需要访问termios结构并对其进行修改以适合您的需求
struct termios SerialPortSettings; // Create the structure
tcgetattr(fd_ard, &SerialPortSettings); // Get the current attributes of the Serial port
然后,设置波特率
cfsetispeed(&SerialPortSettings,B115200); // Set Read Speed as 115200
cfsetospeed(&SerialPortSettings,B115200); // Set Write Speed as 115200
然后提交更改
if((tcsetattr(fd_ard,TCSANOW,&SerialPortSettings)) != 0) // Set the attributes to the termios structure
printf("Error while setting attributes \n");
可以为流控制,规范模式等设置许多其他设置,这些设置可能会影响数据的发送和接收方式。请参考手册页或常规终端界面的This description