- c - 在位数组中找到第一个零
- linux - Unix 显示有关匹配两种模式之一的文件的信息
- 正则表达式替换多个文件
- linux - 隐藏来自 xtrace 的命令
我有两个程序;一个用 Python3 编写,另一个用 C++ 编写。两者执行相同的任务;从串行端口读取,过滤掉两个标题 float ,并打印剩余的消息。 Python 脚本正常工作(请参阅下面的输出以获取正确的数字); C++ 的,使用 serial图书馆,没有,我不明白为什么。 (在 Raspberry Pi 4、Raspbian Buster 上运行)。
为了避免任何人阅读整篇文章;如果我决定使用这个库进行串行读取是错误的,我如何才能正确地从 C++ 中的串行端口读取?
我是 C++ 的新手,所以也许我找错了地方,但我找不到一个普遍接受的从串行端口读取的库,所以我选择了星数最多的那个知乎(serial)。 This answer 给出了 windows 的示例和几个库的链接,但是它们要么用于 windows,要么在 C 中,而不是 C++ 中。 This使用另一个库。 This在 C 中(我的代码将与基于 Simulink 的 C++ 类一起编译,所以我认为我需要坚持使用 C++(?))
这是功能齐全的 Python 代码:
import serial
import struct
import time
PORT_NUMBER = '/dev/ttyACM0'
BAUDRATE = 115200
MESSAGE_LENGTH = 8
HEADER_NUMBER = float(112)
header_1_received = False # Has the first header byte been received
header_2_received = False # Has the second header byte been received
dat = [] # The actual message
# Open serial port
ser = serial.Serial(
port=PORT_NUMBER,
baudrate=BAUDRATE,
parity=serial.PARITY_NONE,
stopbits=serial.STOPBITS_ONE,
timeout=0.001)
ser.isOpen()
readings = 0
print('Receive data from Pixhawk using 2 header floats and {} message floats (32-bit) \nIf you wish to close the program, hit \"Ctrl+C\" on your keyboard and it (should) shut down gracefully.'.format(MESSAGE_LENGTH))
start_time = time.time() # Start time for the program
try:
# Main loop
while (True):
# Read 4 bytes (32-bits) to get a full float number
buffer = ser.read(4)
# Only proceed if the buffer is not empty (an empty buffer is b'')
if buffer != b'':
# Since struct.unpack() returns a tuple, we only grab the first element
try:
new_dat = struct.unpack("f",buffer)[0]
if header_1_received==True and header_2_received==True:
dat.append(new_dat)
elif new_dat == HEADER_NUMBER:
# We found a header single; treat it
if header_1_received == False:
header_1_received = True
elif header_2_received == False:
header_2_received = True
else:
# Since below, we reset headers once the full message is received, kind of pointless else
pass
else:
# If a non-header character is received, but we haven't identified the headers yet, then we're starting in the middle of a message or have lost the rest of our previous message
dat = []
header_1_received = False
header_2_received = False
except:
# struct.unpack likely failed; throw away the message and start again
header_1_received = False
header_2_received = False
dat = []
if(len(dat) == MESSAGE_LENGTH):
# Reset flags
#print(dat)
header_1_received = False
header_2_received = False
dat = []
readings += 1
except KeyboardInterrupt:
ser.close()
elapsed_time = time.time() - start_time
if readings > 0:
print("Number of readings: {}\nRun time: {}s\nAverage time per reading: {}s ({}ms)".format(readings,elapsed_time,elapsed_time/readings,(elapsed_time/readings)*1000))
这是功能失调的 C++ 代码:
#include <string>
#include <iostream>
#include <cstdio>
#include <unistd.h>
#include "serial/serial.h"
using std::string;
using std::exception;
using std::cout;
using std::cerr;
using std::endl;
using std::vector;
int run(int argc, char **argv)
{
// Argument 1 is the serial port or enumerate flag
string port(argv[1]);
// Argument 2 is the baudrate
unsigned long baud = 0;
sscanf(argv[2], "%lu", &baud);
// port, baudrate, timeout in milliseconds
serial::Serial my_serial(port, baud, serial::Timeout::simpleTimeout(0.001));
cout << "Is the serial port open?";
if(my_serial.isOpen())
cout << " Yes." << endl;
else
cout << " No." << endl;
/* MY CUSTOM VARIABLES */
const float header = 112;
const int msg_size = 8;
int msg_index = 0;
float f; // the read float
float msg [msg_size] = { }; // the collected floats will be placed here, auto-filled with 0s
bool header_1_received = false;
bool header_2_received = false;
uint8_t *buffer = new uint8_t[sizeof(f)]; // buffer that will be converted to 32-bit float
int count = 0;
while (count < 1000) {
size_t number_of_bytes_read = my_serial.read(buffer, sizeof(f));
memcpy(&f, buffer, sizeof(f));
// Logic for adding new element to array
if (header_1_received and header_2_received){
msg[msg_index] = f;
msg_index += 1;
} else if (f == header) {
if (header_1_received == false){
header_1_received = true;
} else if (header_2_received == false){
header_2_received = true;
} else {
// Do nothing
}
} else {
// A non-header character was received, but headers are also not identified;
// Throw partial message away and restart
std::fill_n(msg, msg_size, 0); // Fill with zeroes
msg_index = 0;
header_1_received = false;
header_2_received = false;
}
// Check to see if message is full
if(msg_index == msg_size){
cout << "Msg: [";
for (int i = 0; i < msg_size; i += 1){
cout << msg[i] << ",";
}
cout << "]" << endl;
// Reset flags
header_1_received = false;
header_2_received = false;
std::fill_n(msg, msg_size, 0);
msg_index = 0;
}
count += 1;
}
return 0;
}
int main(int argc, char **argv) {
try {
return run(argc, argv);
} catch (exception &e) {
cerr << "Unhandled Exception: " << e.what() << endl;
}
}
可以找到 C++ 库 here ,以及有关读取方法的文档 here .据我了解,他的 read
方法将请求的字节数(如果可用)写入缓冲区;有来自其他设备的持续传入字节流,所以我不认为这是问题所在。
Python3 脚本正常运行并输出以下内容:
[0.08539174497127533, 0.17273111641407013, -9.816835403442383, 0.0, 0.0, 0.0, 0.0, 0.0]
[0.08539174497127533, 0.17273111641407013, -9.816835403442383, 0.0, 0.0, 0.0, 0.0, 0.0]
[0.08539174497127533, 0.17273111641407013, -9.816835403442383, 0.0, 0.0, 0.0, 0.0, 0.0]
[0.08539174497127533, 0.17273111641407013, -9.816835403442383, 0.0, 0.0, 0.0, 0.0, 0.0]
(它应该是两个非常小的数字,后跟大约 -9.81,然后是 5 个零)。
可以通过运行以下命令构建和执行 C++ 程序 command :
g++ serial_example.cc -lserial -L ../build/devel/lib -I../include -o test_serial
LD_LIBRARY_PATH=`pwd`/../build/devel/lib ./test_serial
并输出以下内容:
[112,112,112,112,112,112,112,112,]
[112,-9.82691,-9.82691,-9.82691,-9.82691,-9.82691,-9.82691,0,]
[112,112,112,112,-9.82691,-9.82691,-9.82691,-9.82691,]
[112,112,112,112,112,112,112,112,]
如果我添加以下行
cout << "Float extracted from buffer: " << f << endl;
然后它输出它从读取操作重建的每个 float ,导致 9.81、112 和 0 的混搭。
我的 C++ 程序出了什么问题导致它以不同于 Python 程序的方式读取字节/ float ,如果库有问题,在 C++ 中读取串行消息的替代方法或库是什么?
在与@Barmar 和@Gaspa79 进行一些故障排除后,似乎库的read()
方法读取的字节数不一致。我将尝试重写我的程序并留下新版本作为答案。
最佳答案
在验证转换确实正确后,我们意识到 OP 从未真正检查过 number_of_bytes_read 变量,并且底层库出于某种原因正在读取不同数量的字节。
关于python - C++ 输出与 Python 不同的消息(从串口读取),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/57716507/
我想用 python 与我的串口通信。我为 linux 安装了 pyserial 和 uspp: import serial ser = serial.Serial('/dev/pts/1', 192
如何实现 IP 串行,反之亦然。 我听说可以用 SOCAT 做到这一点(9600 N,8,1)--> 串口 --> 网络 --> 串口 -->(9600 N81) 请求人们帮助我解决这个问题 最佳答案
ATtiny88初体验(三):串口 ATtiny88单片机不包含串口模块,因此只能使用软件方式模拟串口时序。 串口通信时序通常由起始位、数据位、校验位和停止位四个部分组成,常见的
我有一个 c# 应用程序,它通过串行端口将 pc 连接到设备。 当我向设备发送数据时,如果设备发回数据,则会触发 datareceived 事件。 我想问这个。 有没有办法模拟设备的数据发送? 我的意
所以我将数据从 Arduino 传输到 C# Winform,后者将数据输出到文本框并将其保存到文件中。传输数据格式如下18|25|999|100~;第一部分是以秒为单位的时间,它让我知道什么时候跳过
规范模式状态的 Termios 手册页 ( http://man7.org/linux/man-pages/man3/termios.3.html ): Input is made available
串口代码有问题。 我只是这样做: opencomm(); send(); closecomm(); ClearCommError()(在 recv() 内) 返回comstat.cbInQue 发送的
我想通过音频插孔使用串行端口获取数据。我对此一无所知。但是我找到了一个应用audioserial可以发送数据到。所以,我认为应该获取像 audioserial 这样的数据。 .是否有相同的项目或对此很
串口有问题 我写了一个程序,可以读取端口 COM1 到 COM9,但可以打开 COMXX(如 com10、com11 等) 我搜索并了解到 tCOM1–COM9 是 NT 命名空间中保留名称的一部分。
我正在尝试在 Linux 中使用串口组织 nob-blocking 读写功能。这是我的代码:http://pastebin.com/RSPw7HAi一切正常,但已缓冲。这意味着,如果我通过控制台 +
我想将出现在 Arduino 中的数据传输到我的 C# 应用程序,但不知道我的代码有什么问题。Arduino 代码来了: int switchPin = 7; int ledPin = 13; boo
我正在编写一个网络驱动程序,它应该使用串行通信将数据包发送到 Arduino。这是一项家庭作业,仅用于教育目的。请在建议一切都可以在用户空间中完成之前考虑到这一点。 这answer说明了 filp_o
我想在笔记本电脑和模块之间进行通信。为此,我创建了一个 python 文件,它将一些数据包发送到 UART,它必须读取它们。我有一个创建数据包的 python 脚本(笔记本电脑): SOF= '24'
正在寻找正确的方法来在主板启动消息期间检测一个关键字。检测到关键字后,一秒后发送 Enter 键。内核是Linux。 # Serial port inisialisation is finished
我尝试通过串口读取数据,但读取操作总是返回0。 // Opening COM port and m_fd returned a valid number m_fd = open (m_com_por
微 Controller :dsPIC33EP512MU810 编译器:MikroC 我正在尝试通过 UART 从远程设备请求多个字节。要获得所需的信息,您发送一个请求字节以接收一个数据字节。当请求超
我计划很快开始围绕串行设备的输入进行编码,很高兴找到 Ruby-serialport . API 看起来很容易使用,但我对如何采用基于事件的方法来接收数据有点困惑。 每当 \n 出现时,我想对数据做一
我想在 Linux 中实现一个驱动程序,它有一个以太网堆栈,但在硬件上输出的数据将是一个串行端口。基本上,我想将我的串行端口注册为以太网驱动程序。有谁知道这是否可能?我希望能够将 IPv6 和/或 U
我正在开发一个项目,其中有许多硬件传感器通过 RS232 串行端口连接到部署机器。 但是……我正在一台没有物理 RS232 串行端口的机器上进行开发,但我想制作假的串行端口,我可以连接到这些端口并
我正在制作一个非常简单的 c++ 程序,它通过串行端口向 arduino 发送一个角度,然后 arduino 将该角度应用于伺服电机。我知道 Unix 把串口设备看成一个文件,实际上这是 c++ 代码
我是一名优秀的程序员,十分优秀!