Skip to content

Commit

Permalink
Increase orientation_stddev max to 100.0
Browse files Browse the repository at this point in the history
  • Loading branch information
sharminramli committed Jul 9, 2024
1 parent 8cf9ce3 commit c6b73da
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion imu_filter_madgwick/src/imu_filter_ros.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -151,7 +151,7 @@ ImuFilterMadgwickRos::ImuFilterMadgwickRos(const rclcpp::NodeOptions &options)
add_parameter("mag_bias_z", rclcpp::ParameterValue(0.0), float_range,
"Magnetometer bias (hard iron correction), z component.");
double orientation_stddev;
float_range = {0.0, 1.0, 0};
float_range = {0.0, 100.0, 0};
add_parameter("orientation_stddev", rclcpp::ParameterValue(0.0),
float_range,
"Standard deviation of the orientation estimate.");
Expand Down

0 comments on commit c6b73da

Please sign in to comment.