Skip to content

Commit

Permalink
comment out printfs (#93)
Browse files Browse the repository at this point in the history
  • Loading branch information
AndrewLuGit authored Apr 14, 2024
1 parent d2377e4 commit e67b459
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/VOSS/controller/ArcPIDController.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -87,7 +87,7 @@ ArcPIDController::get_command(bool reverse, bool thru,
}
// printf("current %f target %f\n", voss::to_degrees(current_angle),
// voss::to_degrees(tangent));
printf("x %f y %f\n", current_pos.x, current_pos.y);
// printf("x %f y %f\n", current_pos.x, current_pos.y);
double ang_speed =
angular_pid.update(voss::norm_delta(tangent - current_angle));
left_speed -= ang_speed;
Expand Down
2 changes: 1 addition & 1 deletion src/VOSS/exit_conditions/SettleExitCondition.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@

namespace voss::controller {
bool SettleExitCondition::is_met(Pose current_pose, bool thru) {
printf("initial %d current %d\n", initial_time, current_time);
// printf("initial %d current %d\n", initial_time, current_time);
if (initial_time <= initial_delay) {
initial_time += constants::MOTOR_UPDATE_DELAY;
return false;
Expand Down

0 comments on commit e67b459

Please sign in to comment.