Skip to content

Commit 2877a3b

Browse files
committed
Merge branch 'main' into test-step-subscription-in-motion
2 parents b6943a7 + 0112eac commit 2877a3b

File tree

3 files changed

+6
-5
lines changed

3 files changed

+6
-5
lines changed

bitbots_motion/bitbots_dynamic_kick/src/stabilizer.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,8 +21,8 @@ Stabilizer::Stabilizer(std::string ns) {
2121
roll_node_->declare_parameter<double>("i_clamp_min", 0.0);
2222
roll_node_->declare_parameter<bool>("antiwindup", false);
2323

24-
pid_trunk_fused_pitch_ = std::make_shared<control_toolbox::PidROS>(pitch_node_, "");
25-
pid_trunk_fused_roll_ = std::make_shared<control_toolbox::PidROS>(roll_node_, "");
24+
pid_trunk_fused_pitch_ = std::make_shared<control_toolbox::PidROS>(pitch_node_, "", "", false);
25+
pid_trunk_fused_roll_ = std::make_shared<control_toolbox::PidROS>(roll_node_, "", "", false);
2626
pid_trunk_fused_pitch_->initialize_from_ros_parameters();
2727
pid_trunk_fused_roll_->initialize_from_ros_parameters();
2828

bitbots_motion/bitbots_dynup/src/dynup_stabilizer.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,8 @@ namespace bitbots_dynup {
44

55
Stabilizer::Stabilizer(rclcpp::Node::SharedPtr node, bitbots_dynup::Params::Stabilizer params)
66
: params_(params),
7-
pid_trunk_pitch_(node, "stabilizer.trunk_pid.pitch"),
8-
pid_trunk_roll_(node, "stabilizer.trunk_pid.roll") {
7+
pid_trunk_pitch_(node, "stabilizer.trunk_pid.pitch", "", false),
8+
pid_trunk_roll_(node, "stabilizer.trunk_pid.roll", "", false) {
99
pid_trunk_pitch_.initialize_from_ros_parameters();
1010
pid_trunk_roll_.initialize_from_ros_parameters();
1111

bitbots_motion/bitbots_quintic_walk/src/walk_stabilizer.cpp

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,8 @@
33
namespace bitbots_quintic_walk {
44

55
WalkStabilizer::WalkStabilizer(rclcpp::Node::SharedPtr node)
6-
: pid_trunk_fused_pitch_(node, "node.trunk_pid.pitch"), pid_trunk_fused_roll_(node, "node.trunk_pid.roll") {
6+
: pid_trunk_fused_pitch_(node, "node.trunk_pid.pitch", "", false),
7+
pid_trunk_fused_roll_(node, "node.trunk_pid.roll", "", false) {
78
pid_trunk_fused_pitch_.initialize_from_ros_parameters();
89
pid_trunk_fused_roll_.initialize_from_ros_parameters();
910

0 commit comments

Comments
 (0)