18 KiB
18 KiB
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
<head>
</head>
</html>
Changelog for package joint_trajectory_controller
3.3.0 (2023-03-07)
3.2.0 (2023-02-10)
- fix JTC segfault (#518)
- fix interpolation logic (#516)
- Fix overriding of install (#510)
- Add JTC normalize_error parameter to doc (#511)
- Fix JTC segfault on unload (#515)
- Don't set interpolation_method_ twice (#517)
- Remove compile warnings. (#519)
- Contributors: Andy Zelenak, Christoph Fröhlich, Dr. Denis, Michael Wiznitzer, Márk Szitanics, Solomon Wiznitzer, Tyler Weaver, Chris Thrasher
3.1.0 (2023-01-26)
3.0.0 (2023-01-19)
- [JTC] Add pid gain structure to documentation (#485)
- [JTC] Activate test for only velocity controller (#487)
- [JTC] Allow ff_velocity_scale=0 without deprecated warning (#490)
- Add backward_ros to all controllers (#489)
- Fix markup in userdoc.rst (#480)
- [JTC] Remove deprecation from parameters validation file. (#476)
- Contributors: Bence Magyar, Christoph Fröhlich, Denis Štogl
2.15.0 (2022-12-06)
2.14.0 (2022-11-18)
- Fix parameter library export (#448)
- Contributors: Tyler Weaver
2.13.0 (2022-10-05)
- Generate Parameter Library for Joint Trajectory Controller (#384)
- Fix rates in JTC userdoc.rst (#433)
- Fix for high CPU usage by JTC in gzserver (#428) * Change type cast wall timer period from second to nanoseconds. create_wall_timer() expects delay in nanoseconds (duration object) however the type cast to seconds will result in 0 (if duration is less than 1s) and thus causing timer to be fired non stop resulting in very high CPU usage. * Reset smartpointer so that create_wall_timer() call can destroy previous trajectory timer. node->create_wall_timer() first removes timers associated with expired smartpointers before servicing current request. The JTC timer pointer gets overwrite only after the create_wall_timer() returns and thus not able to remove previous trajectory timer resulting in upto two timers running for JTC during trajectory execution. Althougth the previous timer does nothing but still get fired.
- Contributors: Arshad Mehmood, Borong Yuan, Tyler Weaver, Andy Zelenak, Bence Magyar, Denis Štogl
2.12.0 (2022-09-01)
- Use a "steady clock" when measuring time differences (#427)
- [JTC] Add additional parameter to enable configuration of interfaces for following controllers in a chain. (#380)
- test: ✅ fix and add back joint_trajectory_controller state_topic_consistency (#415)
- Reinstate JTC tests (#391)
- [JTC] Hold position if tolerance is violated even during non-active goal (#368)
- Small fixes for JTC. (#390) variables in JTC to not clutter other PR with them. fixes of updating parameters on renewed configuration of JTC that were missed
- Contributors: Andy Zelenak, Bence Magyar, Denis Štogl, Jaron Lundwall, Michael Wiznitzer
2.11.0 (2022-08-04)
2.10.0 (2022-08-01)
2.9.0 (2022-07-14)
- Add option to skip interpolation in the joint trajectory controller (#374) * Introduce InterpolationMethods structure * Use parameters to define interpolation use in JTC
- Contributors: Andy Zelenak
2.8.0 (2022-07-09)
- Preallocate JTC variables to avoid resizing in realtime loops (#340)
- Contributors: Andy Zelenak
2.7.0 (2022-07-03)
2.6.0 (2022-06-18)
- Disable failing workflows (#363)
- Fixed lof message in joint_trayectory_controller (#366)
- CMakeLists cleanup (#362)
- Fix exception about parameter already been declared & Change default c++ version to 17 (#360) * Default C++ version to 17 * Replace explicit use of declare_paremeter with auto_declare
- Member variable renaming in the Joint Traj Controller (#361)
- Contributors: Alejandro Hernández Cordero, Andy Zelenak, Jafar Abdi
2.5.0 (2022-05-13)
- check for nans in command interface (#346)
- Contributors: Michael Wiznitzer
2.4.0 (2022-04-29)
- Fix a gtest deprecation warning (#341)
- Delete unused variable in joint_traj_controller (#339)
- updated to use node getter functions (#329)
- Fix JTC state tolerance and goal_time tolerance check bug (#316) * fix state tolerance check bug * hold position when canceling or aborting. update state tolerance test * add goal tolerance fail test * better state tolerance test * use predefined constants * fix goal_time logic and tests * add comments
- Contributors: Andy Zelenak, Jack Center, Michael Wiznitzer, Bence Magyar, Denis Štogl
2.3.0 (2022-04-21)
- [JTC] Allow integration of states in goal trajectories (#190) * Added position and velocity deduction to trajectory. * Added support for deduction of states from their derivatives.
- Use CallbackReturn from controller_interface namespace (#333)
- [JTC] Implement effort-only command interface (#225) * Fix trajectory tolerance parameters * Implement effort command interface for JTC * Use auto_declare for pid params * Set effort to 0 on deactivate
- [JTC] Variable renaming for clearer API (#323)
- Remove unused include to fix JTC test (#319)
- Contributors: Akash, Andy Zelenak, Bence Magyar, Denis Štogl, Jafar Abdi, Victor Lopez
2.2.0 (2022-03-25)
- Use lifecycle node as base for controllers (#244)
- JointTrajectoryController: added missing control_toolbox dependencies (#315)
- Use time argument on update function instead of node time (#296)
- Export dependency (#310)
- Contributors: DasRoteSkelett, Erick G. Islas-Osuna, Jafar Abdi, Denis Štogl, Vatan Aksoy Tezer, Bence Magyar
2.1.0 (2022-02-23)
- INSTANTIATE_TEST_CASE_P -> INSTANTIATE_TEST_SUITE_P (#293)
- Contributors: Bence Magyar
2.0.1 (2022-02-01)
- Fix missing control_toolbox dependency (#291)
- Contributors: Denis Štogl
2.0.0 (2022-01-28)
- [JointTrajectoryController] Add velocity-only command option for JTC with closed loop controller (#239) * Add velocity pid support. * Remove incorrect init test for only velocity command interface. * Add clarification comments for pid aux variables. Adapt update loop. * Change dt for pid to appropriate measure. * Improve partial commands for velocity-only mode. * Extend tests to use velocity-only mode. * Increase timeout for velocity-only mode parametrized tests. * add is_same_sign for better refactor * refactor boolean logic * set velocity to 0.0 on deactivate
- Contributors: Lovro Ivanov, Bence Magyar
1.3.0 (2022-01-11)
1.2.0 (2021-12-29)
1.1.0 (2021-10-25)
1.0.0 (2021-09-29)
- Remove compile warnings. (#245)
- Add time and period to update function (#241)
- Quickfix 🛠: Correct confusing variable name (#240)
- Unify style of controllers. (#236)
- Change test to work with Foxy and posterior action API (#237)
- ros2_controllers code changes to support ros2_controls issue #489 (#233)
- Removing Boost from controllers. (#235)
- refactor get_current_state to get_state (#232)
- Contributors: Bence Magyar, Denis Štogl, Márk Szitanics, Tyler Weaver, bailaC
0.5.0 (2021-08-30)
- Add auto declaration of parameters. (#224)
- Bring precommit config up to speed with ros2_control (#227)
- Add initial pre-commit setup. (#220)
- Enable JTC for hardware having offset from state measurements (#189) * Avoid "jumps" with states that have tracking error. All test are passing but separatelly. Is there some kind of timeout? * Remove allow_integration_flag * Add reading from command interfaces when restarting controller
- Reduce docs warnings and correct adding guidelines (#219)
- Contributors: Bence Magyar, Denis Štogl, Lovro Ivanov
0.4.1 (2021-07-08)
0.4.0 (2021-06-28)
- Force torque sensor broadcaster (#152) * Stabilize joint_trajectory_controller tests * Add rclcpp::shutdown(); to all standalone test functions
- Fixes for Windows (#205) * Export protected joint trajectory controller functions
- Fix deprecation warnings on Rolling, remove rcutils dependency (#204)
- Fix parameter initialisation for galactic (#199) * Fix parameter initialisation for galactic * Fix forward_command_controller the same way * Fix other compiler warnings * Missing space
- Fix rolling build (#200) * Fix rolling build * Stick to printf style * Add back :: around interface type Co-authored-by: Bence Magyar <bence.magyar.robotics@gmail.com>
- Contributors: Akash, Bence Magyar, Denis Štogl, Tim Clephas, Vatan Aksoy Tezer
0.3.1 (2021-05-23)
- Reset external trajectory message upon activation (#185) * Reset external trajectory message to prevent preserving the old goal on systems with hardware offsets * Fix has_trajectory_msg() function: two wrongs were making a right so functionally things were fine
- Contributors: Nathan Brooks, Matt Reynolds
0.3.0 (2021-05-21)
- joint_trajectory_controller publishes state in node namespace (#187)
- [JointTrajectoryController] Enable position, velocity and acceleration interfaces (#140) * joint_trajectory_controller should not go into FINALIZED state when fails to configure, remain in UNCONFIGURED
- Contributors: Bence Magyar, Denis Štogl
0.2.1 (2021-05-03)
- Migrate from deprecated controller_interface::return_type::SUCCESS -> OK (#167)
- [JTC] Add link to TODOs to provide better trackability (#169)
- Fix JTC segfault (#164) * Use a copy of the rt_active_goal to avoid segfault * Use RealtimeBuffer for thread-safety
- Add basic user docs pages for each package (#156)
- Contributors: Bence Magyar, Matt Reynolds
0.2.0 (2021-02-06)
- Use ros2 contol test assets (#138) * Add description to test trajecotry_controller * Use ros2_control_test_assets package * Delete obsolete components plugin export
- Contributors: Denis Štogl
0.1.2 (2021-01-07)
0.1.1 (2021-01-06)
0.1.0 (2020-12-23)
- Remove lifecycle node controllers (#124)
- Use resource manager on joint trajectory controller (#112)
- Use new joint handles in all controllers (#90)
- More jtc tests (#75)
- remove unused variables (#86)
- Port over interpolation formulae, abort if goals tolerance violated (#62)
- Partial joints (#68)
- Use clamp function from rcppmath (#79)
- Reorder incoming out of order joint_names in trajectory messages (#53)
- Action server for JointTrajectoryController (#26)
- Add state_publish_rate to JointTrajectoryController (#25)
- Contributors: Alejandro Hernández Cordero, Anas Abou Allaban, Bence Magyar, Denis Štogl, Edwin Fan, Jordan Palacios, Karsten Knese, Victor Lopez