Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
R
robotpkg-wip
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container Registry
Model registry
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Gepetto
robotpkg-wip
Commits
e6a81459
Commit
e6a81459
authored
8 years ago
by
Rohan Budhiraja
Browse files
Options
Downloads
Patches
Plain Diff
[wip/dynamic-graph-bridge-v3][patch] Counting error in joint names. Corrected
parent
5a6a3f0c
Loading
Loading
No related merge requests found
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
dynamic-graph-bridge-v3/Makefile
+1
-1
1 addition, 1 deletion
dynamic-graph-bridge-v3/Makefile
dynamic-graph-bridge-v3/distinfo
+1
-0
1 addition, 0 deletions
dynamic-graph-bridge-v3/distinfo
dynamic-graph-bridge-v3/patches/patch-ab
+31
-0
31 additions, 0 deletions
dynamic-graph-bridge-v3/patches/patch-ab
with
33 additions
and
1 deletion
dynamic-graph-bridge-v3/Makefile
+
1
−
1
View file @
e6a81459
...
...
@@ -4,7 +4,7 @@
VERSION
=
3.0.0
DISTNAME
=
dynamic_graph_bridge-v3-
${
VERSION
}
PKGNAME
=
dynamic-graph-bridge-v3-
${
VERSION
}
PKGREVISION
=
4
PKGREVISION
=
5
CATEGORIES
=
wip
MASTER_SITES
=
${
MASTER_SITE_OPENROBOTS:
=
dynamic-graph-bridge-v3/
}
...
...
This diff is collapsed.
Click to expand it.
dynamic-graph-bridge-v3/distinfo
+
1
−
0
View file @
e6a81459
...
...
@@ -2,3 +2,4 @@ SHA1 (dynamic_graph_bridge-v3-3.0.0.tar.gz) = ab511444894614eb2b6cec86fc10d189fb
RMD160 (dynamic_graph_bridge-v3-3.0.0.tar.gz) = ecf35dc5c50c24a8aa2ba9b53fc2d4972e58ddae
Size (dynamic_graph_bridge-v3-3.0.0.tar.gz) = 742833 bytes
SHA1 (patch-aa) = f1a950bd8ccf882c49dc2de373f12db07b5be852
SHA1 (patch-ab) = c30d3ad301b8e7911908e12398f8da00e0ad57bd
This diff is collapsed.
Click to expand it.
dynamic-graph-bridge-v3/patches/patch-ab
0 → 100644
+
31
−
0
View file @
e6a81459
diff -Naurb /tmp/dynamic_graph_bridge-v3-3.0.0/src/ros_joint_state.cpp dynamic_graph_bridge-v3-3.0.0/src/ros_joint_state.cpp
--- src/ros_joint_state.cpp 2016-09-05 17:25:07.573110774 +0200
+++ src/ros_joint_state.cpp 2016-09-05 17:29:26.907908444 +0200
@@ -37,12 +37,14 @@
namespace {
void buildJointNames (sensor_msgs::JointState& jointState, se3::Model& robot_model) {
- for (int i=0;i<robot_model.nbody-1;i++) {
+ int cnt = 0;
+ for (int i=1;i<robot_model.nbody;i++) {
// Ignore anchors.
if (se3::nv(robot_model.joints[i]) != 0) {
// If we only have one dof, the dof name is the joint name.
if (se3::nv(robot_model.joints[i]) == 1) {
- jointState.name[i] = robot_model.names[i];
+ jointState.name[cnt] = robot_model.names[i];
+ cnt++;
}
else {
// ...otherwise, the dof name is the joint name on which
@@ -52,8 +54,9 @@
boost::format fmt("%1%_%2%");
fmt % robot_model.names[i];
fmt % j;
- jointState.name[i + j] = fmt.str();
+ jointState.name[cnt + j] = fmt.str();
}
+ cnt+=joint_dof;
}
}
}
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment