1
0
mirror of https://gitlab.com/obbart/universal_robots_ros_driver.git synced 2026-04-10 01:50:46 +02:00

Fixed RTState parsing bug

This commit is contained in:
Simon Rasmussen
2017-03-01 00:00:03 +01:00
parent f8be2834b0
commit ff36a13aea

View File

@@ -20,6 +20,7 @@ bool RTShared::parse_shared2(BinParser& bp)
bp.parse(digital_input); bp.parse(digital_input);
bp.parse(motor_temperatures); bp.parse(motor_temperatures);
bp.parse(controller_time); bp.parse(controller_time);
bp.consume(sizeof(double)); //Unused "Test value" field
bp.parse(robot_mode); bp.parse(robot_mode);
return true; return true;
} }