我正在尝试使用串行通信向设备发送一些数据:
void VcpBridge::write_speed(char address, int spd) {
uint8_t speed = (uint8_t)(127);
ROS_ERROR("VCP BRIDGE: Sending %u to %u", speed, address);
char msg[8];
char command = 0x55, size = 0x02, csum;
csum = speed + 0x64 + address;
sprintf(msg, "%c%c%c%c%c%c", command, address, speed, size, 0x64, csum);
ROS_ERROR(msg);
write(fd_, msg, 6);
}
ROS_ERROR
这里与printf
.
一切正常,除非值speed
超过 127。然后它总是?
在它的位置打印 a 并且设备没有接收到正确的信息。你知道有什么方法可以正确投射吗?我试过%u
了,但是程序崩溃了。