2019-08-30 00:06:28 -04:00
|
|
|
|
2020-01-10 12:36:13 +00:00
|
|
|
# Copyright 2020 Open Source Robotics Foundation
|
2019-08-30 00:06:28 -04:00
|
|
|
# Distributed under the terms of the BSD license
|
|
|
|
|
2020-03-27 12:53:57 +00:00
|
|
|
{ lib, buildRosPackage, fetchurl, boost, catkin, cmake-modules, cob-control-msgs, cob-frame-tracker, cob-script-server, cob-srvs, dynamic-reconfigure, eigen, eigen-conversions, geometry-msgs, kdl-conversions, kdl-parser, nav-msgs, orocos-kdl, pluginlib, pythonPackages, robot-state-publisher, roscpp, roslint, rospy, rviz, sensor-msgs, std-msgs, tf, tf-conversions, topic-tools, trajectory-msgs, urdf, visualization-msgs, xacro }:
|
2019-08-30 00:06:28 -04:00
|
|
|
buildRosPackage {
|
|
|
|
pname = "ros-melodic-cob-twist-controller";
|
2020-03-27 12:53:57 +00:00
|
|
|
version = "0.8.11-r1";
|
2019-08-30 00:06:28 -04:00
|
|
|
|
|
|
|
src = fetchurl {
|
2020-03-27 12:53:57 +00:00
|
|
|
url = "https://github.com/ipa320/cob_control-release/archive/release/melodic/cob_twist_controller/0.8.11-1.tar.gz";
|
|
|
|
name = "0.8.11-1.tar.gz";
|
|
|
|
sha256 = "7eae59427d25c107f17fd539d819c0d7c6ee4b10d4f19114113152b9c959ca73";
|
2019-08-30 00:06:28 -04:00
|
|
|
};
|
|
|
|
|
2019-09-06 12:26:32 -04:00
|
|
|
buildType = "catkin";
|
2019-12-09 23:36:28 -05:00
|
|
|
buildInputs = [ roslint ];
|
2020-03-27 12:53:57 +00:00
|
|
|
propagatedBuildInputs = [ boost cmake-modules cob-control-msgs cob-frame-tracker cob-script-server cob-srvs dynamic-reconfigure eigen eigen-conversions geometry-msgs kdl-conversions kdl-parser nav-msgs orocos-kdl pluginlib pythonPackages.matplotlib pythonPackages.six robot-state-publisher roscpp rospy rviz sensor-msgs std-msgs tf tf-conversions topic-tools trajectory-msgs urdf visualization-msgs xacro ];
|
2019-08-30 00:06:28 -04:00
|
|
|
nativeBuildInputs = [ catkin ];
|
|
|
|
|
|
|
|
meta = {
|
|
|
|
description = ''The main purpose of the cob_twist_controller is to convert target twists into joint velocities.
|
|
|
|
Therefore it makes use of several implemented inverse kinematics approaches at the first order differential level.
|
|
|
|
The inverse differential kinematics solver considers kinematic chain extensions, singularity robustness,
|
|
|
|
redundancy resolution and priority-based methods.
|
|
|
|
To avoid hardware destruction there is a limiter interface active as well.
|
|
|
|
Via parameter server users can dynamically configure the solving strategy.'';
|
|
|
|
license = with lib.licenses; [ asl20 ];
|
|
|
|
};
|
|
|
|
}
|