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

implemented usage of recipe read by rtde client in the parser and the

rtde data package
This commit is contained in:
Felix Mauch
2019-04-11 14:39:47 +02:00
committed by Tristan Schnell
parent 420e04530f
commit c322bcb2f2
12 changed files with 210 additions and 182 deletions

View File

@@ -41,7 +41,7 @@ bool ControlPackageSetupInputs::parseWith(comm::BinParser& bp)
std::string ControlPackageSetupInputs::toString() const
{
std::stringstream ss;
ss << "input recipe id: " << input_recipe_id_ << std::endl;
ss << "input recipe id: " << static_cast<int>(input_recipe_id_) << std::endl;
ss << "variable types: " << variable_types_;
return ss.str();