Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
F
franka_description
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
GitLab community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
This is an archived project. Repository and other project resources are read-only.
Show more breadcrumbs
CeTI
ROS
ROS Packages
franka_description
Commits
dfbf3078
Commit
dfbf3078
authored
7 years ago
by
Simon Gabl
Browse files
Options
Downloads
Patches
Plain Diff
Rename grasp parameter 'max_force' to 'force'.
parent
d638cb7a
No related branches found
No related tags found
No related merge requests found
Changes
2
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
franka_gripper/action/Grasp.action
+1
-1
1 addition, 1 deletion
franka_gripper/action/Grasp.action
franka_gripper/src/franka_gripper.cpp
+1
-1
1 addition, 1 deletion
franka_gripper/src/franka_gripper.cpp
with
2 additions
and
2 deletions
franka_gripper/action/Grasp.action
+
1
−
1
View file @
dfbf3078
float64 width # [m]
float64 width # [m]
float64 speed # [m/s]
float64 speed # [m/s]
float64
max_
force # [N]
float64 force # [N]
---
---
bool success
bool success
string error
string error
...
...
This diff is collapsed.
Click to expand it.
franka_gripper/src/franka_gripper.cpp
+
1
−
1
View file @
dfbf3078
...
@@ -75,7 +75,7 @@ bool stop(const franka::Gripper& gripper, const StopGoalConstPtr& /*goal*/) {
...
@@ -75,7 +75,7 @@ bool stop(const franka::Gripper& gripper, const StopGoalConstPtr& /*goal*/) {
}
}
bool
grasp
(
const
franka
::
Gripper
&
gripper
,
const
GraspGoalConstPtr
&
goal
)
{
bool
grasp
(
const
franka
::
Gripper
&
gripper
,
const
GraspGoalConstPtr
&
goal
)
{
return
gripper
.
grasp
(
goal
->
width
,
goal
->
speed
,
goal
->
max_
force
);
return
gripper
.
grasp
(
goal
->
width
,
goal
->
speed
,
goal
->
force
);
}
}
}
// namespace franka_gripper
}
// namespace franka_gripper
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