Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
Paul Rouanet
ros2_control_bolt
Commits
2b86e0f6
Commit
2b86e0f6
authored
Jul 22, 2021
by
Paul Rouanet
Browse files
Delete t and dt from stop()
parent
16edfe1e
Changes
1
Hide whitespace changes
Inline
Side-by-side
ros2_control_bolt/src/system_bolt.cpp
View file @
2b86e0f6
...
...
@@ -536,16 +536,12 @@ return_type SystemBoltHardware::stop()
// Put torques to 0.0
Eigen
::
Vector6d
torques
;
double
t
=
0.0
;
double
dt
=
0.001
;
std
::
chrono
::
time_point
<
std
::
chrono
::
system_clock
>
last
=
std
::
chrono
::
system_clock
::
now
();
while
(
!
robot_
->
IsTimeout
())
{
last
=
std
::
chrono
::
system_clock
::
now
();
// last+dt would be better
t
+=
dt
;
for
(
const
hardware_interface
::
ComponentInfo
&
joint
:
info_
.
joints
)
{
torques
[
joint_name_to_motor_nb_
[
joint
.
name
]]
=
0.0
;
}
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment