Skip to main content
Homepage
Explore
Search or go to…
/
Register
Sign in
Explore
Primary navigation
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
?
Collapse sidebar
Snippets
Groups
Projects
Show more breadcrumbs
CeTI
ROS
ROS Packages
franka_description
Commits
fa20e934
This project is archived. Its data is
read-only
.
Commit
fa20e934
authored
Nov 6, 2019
by
Florian Walch
Browse files
Options
Downloads
Patches
Plain Diff
Fix unused parameter bugs in FrankaModelHandle
Fixes #78.
parent
541b5fc1
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
CHANGELOG.md
+1
-0
1 addition, 0 deletions
CHANGELOG.md
franka_hw/include/franka_hw/franka_model_interface.h
+2
-2
2 additions, 2 deletions
franka_hw/include/franka_hw/franka_model_interface.h
with
3 additions
and
2 deletions
CHANGELOG.md
+
1
−
0
View file @
fa20e934
...
@@ -18,6 +18,7 @@ Requires `libfranka` >= 0.5.0
...
@@ -18,6 +18,7 @@ Requires `libfranka` >= 0.5.0
*
Added support for ROS Melodic Morenia.
*
Added support for ROS Melodic Morenia.
*
Raised minimum CMake version to 3.4 to match
`libfranka`
.
*
Raised minimum CMake version to 3.4 to match
`libfranka`
.
*
Add rosparam to choose value of
`franka::RealtimeConfig`
.
*
Add rosparam to choose value of
`franka::RealtimeConfig`
.
*
Fix unused parameter bugs in
`FrankaModelHandle`
(#78).
## 0.6.0 - 2018-08-08
## 0.6.0 - 2018-08-08
...
...
...
...
This diff is collapsed.
Click to expand it.
franka_hw/include/franka_hw/franka_model_interface.h
+
2
−
2
View file @
fa20e934
...
@@ -221,7 +221,7 @@ class FrankaModelHandle {
...
@@ -221,7 +221,7 @@ class FrankaModelHandle {
const
std
::
array
<
double
,
16
>&
F_T_EE
,
// NOLINT (readability-identifier-naming)
const
std
::
array
<
double
,
16
>&
F_T_EE
,
// NOLINT (readability-identifier-naming)
const
std
::
array
<
double
,
16
>&
EE_T_K
)
// NOLINT (readability-identifier-naming)
const
std
::
array
<
double
,
16
>&
EE_T_K
)
// NOLINT (readability-identifier-naming)
const
{
const
{
return
model_
->
bodyJacobian
(
frame
,
*
robot_state_
);
return
model_
->
bodyJacobian
(
frame
,
q
,
F_T_EE
,
EE_T_K
);
}
}
/**
/**
...
@@ -261,7 +261,7 @@ class FrankaModelHandle {
...
@@ -261,7 +261,7 @@ class FrankaModelHandle {
const
std
::
array
<
double
,
16
>&
F_T_EE
,
// NOLINT (readability-identifier-naming)
const
std
::
array
<
double
,
16
>&
F_T_EE
,
// NOLINT (readability-identifier-naming)
const
std
::
array
<
double
,
16
>&
EE_T_K
)
// NOLINT (readability-identifier-naming)
const
std
::
array
<
double
,
16
>&
EE_T_K
)
// NOLINT (readability-identifier-naming)
const
{
const
{
return
model_
->
zeroJacobian
(
frame
,
*
robot_state_
);
return
model_
->
zeroJacobian
(
frame
,
q
,
F_T_EE
,
EE_T_K
);
}
}
private
:
private
:
...
...
...
...
This diff is collapsed.
Click to expand it.
Johannes Mey
@johannes.mey
mentioned in commit
57d2dbdf
·
Mar 24, 2020
mentioned in commit
57d2dbdf
mentioned in commit 57d2dbdf4c1d17b268e06e4aa424414d88df68ff
Toggle commit list
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