Skip to content
Permalink

Comparing changes

This is a direct comparison between two commits made in this repository or its related repositories. View the default comparison for this range or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: huskyroboticsteam/Resurgence
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: 1172ef2b21fd3b2112803cc59350c8e657155d28
Choose a base ref
..
head repository: huskyroboticsteam/Resurgence
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: 1d16e76c9ea74be3c013db71476b3d5b4eb4c528
Choose a head ref
Showing with 1 addition and 3 deletions.
  1. +1 −3 src/Constants.h
4 changes: 1 addition & 3 deletions src/Constants.h
Original file line number Diff line number Diff line change
@@ -125,9 +125,7 @@ namespace autonomous {
constexpr double THETA_KP = 2.0;
constexpr double DRIVE_VEL = 1.5;
constexpr double SLOW_DRIVE_VEL = 1.0;
// CIRC rules say rover must be within 2 meters, so we want to ensure we are well within that
// range
constexpr double DONE_THRESHOLD = 0.5;
// Duration long enough to confirm we are there, not so long that time is wasted
constexpr util::dseconds CLOSE_TO_TARGET_DUR_VAL = std::chrono::seconds(1); // Adjust as necessary
constexpr util::dseconds CLOSE_TO_TARGET_DUR_VAL = std::chrono::seconds(1);
} // namespace autonomous