在頭文件中,進(jìn)行串口頭文件的包含
#include < serial/serial.h >
在類的定義中,什么一個(gè) serial 類的實(shí)例
serial::Serial Stm32_Serial; //聲明串口對(duì)象
并且在類的定義中,聲明兩個(gè)結(jié)構(gòu)體,用來(lái)存儲(chǔ)接收和要發(fā)送的數(shù)據(jù)
RECEIVE_DATA Receive_Data; //The serial port receives the data structure //串口接收數(shù)據(jù)結(jié)構(gòu)體
SEND_DATA Send_Data; //The serial port sends the data structure //串口發(fā)送數(shù)據(jù)結(jié)構(gòu)體
在類的構(gòu)造函數(shù)中,配置這個(gè)串口對(duì)象的參數(shù)
private_nh.param< std::string >("usart_port_name", usart_port_name, "/dev/stm32_controller"); //Fixed serial port number //固定串口號(hào)
private_nh.param< int > ("serial_baud_rate", serial_baud_rate, 115200); //Communicate baud rate 115200 to the lower machine //和下位機(jī)通信波特率115200
這兩個(gè)參數(shù)是在launch文件中設(shè)置的,代碼里進(jìn)行參數(shù)的讀取。
usart_port_name 設(shè)置的USB設(shè)備別名
serial_baud_rate 串口通信的波特率要和stm32設(shè)置的一致
try
{
//Attempts to initialize and open the serial port //嘗試初始化與開啟串口
Stm32_Serial.setPort(usart_port_name); //Select the serial port number to enable //選擇要開啟的串口號(hào)
Stm32_Serial.setBaudrate(serial_baud_rate); //Set the baud rate //設(shè)置波特率
serial::Timeout _time = serial::Timeout::simpleTimeout(2000); //Timeout //超時(shí)等待
Stm32_Serial.setTimeout(_time);
Stm32_Serial.open(); //Open the serial port //開啟串口
}
catch (serial::IOException& e)
{
ROS_ERROR_STREAM("car_robot can not open serial port,Please check the serial port cable! "); //If opening the serial port fails, an error message is printed //如果開啟串口失敗,打印錯(cuò)誤信息
}
初始化串口配置,并開啟串口
設(shè)置的參數(shù)包括:
- 要開啟的串口號(hào)
- 設(shè)置波特率
- 超時(shí)等待
判斷串口是否被打開,打開輸出終端打印信息
if(Stm32_Serial.isOpen())
{
ROS_INFO_STREAM("car_robot serial port opened"); //Serial port opened successfully //串口開啟成功提示
}
-
STM32
+關(guān)注
關(guān)注
2264文章
10854瀏覽量
354301 -
串口通信
+關(guān)注
關(guān)注
34文章
1607瀏覽量
55381 -
ROS
+關(guān)注
關(guān)注
1文章
276瀏覽量
16942
發(fā)布評(píng)論請(qǐng)先 登錄
相關(guān)推薦
評(píng)論