-
Notifications
You must be signed in to change notification settings - Fork 89
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
6 changed files
with
227 additions
and
74 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
13 changes: 13 additions & 0 deletions
13
ign_ros2_control/include/ign_ros2_control/validate_system_parameters.hpp
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
#ifndef IGN_ROS2_CONTROL__VALIDATE_SYSTEM_PARAMETERS_HPP_ | ||
#define IGN_ROS2_CONTROL__VALIDATE_SYSTEM_PARAMETERS_HPP_ | ||
|
||
#include <string> | ||
|
||
#include "parameter_traits/parameter_traits.hpp" | ||
|
||
namespace parameter_traits | ||
{ | ||
|
||
} // namespace parameter_traits | ||
|
||
#endif // IGN_ROS2_CONTROL__VALIDATE_SYSTEM_PARAMETERS_HPP_ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,51 @@ | ||
ignition_system_interface: | ||
joints: { | ||
type: string_array, | ||
default_value: [], | ||
description: "Names of joints used by the controller", | ||
validation: { | ||
unique<>: null, | ||
} | ||
} | ||
gains: | ||
__map_joints: | ||
p: { | ||
type: double, | ||
default_value: 0.0, | ||
description: "Proportional gain for PID" | ||
} | ||
i: { | ||
type: double, | ||
default_value: 0.0, | ||
description: "Integral gain for PID" | ||
} | ||
d: { | ||
type: double, | ||
default_value: 0.0, | ||
description: "Derivative gain for PID" | ||
} | ||
iMax: { | ||
type: double, | ||
default_value: 0.0, | ||
description: "Integral positive clamp." | ||
} | ||
iMin: { | ||
type: double, | ||
default_value: 0.0, | ||
description: "Integral negative clamp." | ||
} | ||
cmdMax: { | ||
type: double, | ||
default_value: 0.0, | ||
description: "Maximum value for the PID command." | ||
} | ||
cmdMin: { | ||
type: double, | ||
default_value: 0.0, | ||
description: "Maximum value for the PID command." | ||
} | ||
cmdOffset: { | ||
type: double, | ||
default_value: 0.0, | ||
description: "Offset value for the command which is added to the result of the PID controller." | ||
} |
Oops, something went wrong.