Skip to content

Latest commit

 

History

History
52 lines (45 loc) · 2.42 KB

CHANGELOG.rst

File metadata and controls

52 lines (45 loc) · 2.42 KB

Changelog for package diff_drive_controller

0.3.1 (2021-05-23)

0.3.0 (2021-05-21)

0.2.1 (2021-05-03)

  • Migrate from deprecated controller_interface::return_type::SUCCESS -> OK (#167)
  • Add basic user docs pages for each package (#156)
  • [diff_drive_controller] Change header math.h in cmath for better C++ compliance (#148) and isnan inclusion.
  • Contributors: Bence Magyar, Olivier Stasse

0.2.0 (2021-02-06)

  • Fix diff drive twist concurrency issues (#146) * Fix diff drive twist concurrency issues Before this fix, a twist message could be received and stored one thread, in the middle of the update() of the controller. This would be fixed by making a copy of the shared pointer at the beginning of the update() function, added realtime box to ensure safe concurrent access to the pointer.

    * Don't store limited command as last command Before these changes, the limited command overwrote the original command, which mean that it too much more time to reach the commanded speed. We only want this behavior when the command is too old and we replace it with 0 speed.

  • Diff drive parameter fixes (#145)
    • Recover old speed limiter behavior, if unspecified min defaults to -max
    • Change cmd_vel_timeout to seconds (double) as ROS1 instead of ms(int)
  • Unstamped cmd_vel subscriber rebased (#143)
  • Contributors: Anas Abou Allaban, Victor Lopez

0.1.2 (2021-01-07)

  • Remove unused sensor_msgs dependency (was non-declared in package.xml) (#139)
  • Contributors: Bence Magyar

0.1.1 (2021-01-06)

  • avoid warnings (#137)
  • Migrate diff drive controller to resourcemanager (#128)
  • Contributors: Bence Magyar, Karsten Knese

0.1.0 (2020-12-23)