1
0
mirror of https://gitlab.com/obbart/universal_robots_ros_driver.git synced 2026-04-09 17:40:47 +02:00

Removed deprecated TODOs

We only support robot software versions 3.7+
This commit is contained in:
Felix Mauch
2019-09-25 07:21:41 +02:00
parent 3d315ea5cf
commit ba98bf8e19
4 changed files with 1 additions and 4 deletions

View File

@@ -74,7 +74,7 @@ public:
uint8_t major_version_;
uint8_t minor_version_;
int32_t svn_version_;
int32_t build_number_; // TODO Exists in version 3.3 above only
int32_t build_number_;
std::string build_date_;
};
} // namespace primary_interface

View File

@@ -85,7 +85,6 @@ public:
uint32_t calibration_status_; // According to the docs this should be uint8_t, but then I have 3 bytes left.
};
// TODO: Handle pre-3.6 as they don't have kinematics info
} // namespace primary_interface
} // namespace ur_driver

View File

@@ -118,7 +118,6 @@ public:
{
if (data_.find(name) != data_.end())
{
// TODO: Can we check this somehow?
val = boost::strict_get<T>(data_[name]);
}
else

View File

@@ -396,7 +396,6 @@ uint32_t HardwareInterface ::getControlFrequency() const
{
return ur_driver_->getControlFrequency();
}
// TODO: Do this nicer than throwing an exception
throw std::runtime_error("ur_driver is not yet initialized");
}