Skip to content

Commit

Permalink
Fix names
Browse files Browse the repository at this point in the history
  • Loading branch information
gabekole committed Oct 5, 2024
1 parent e457d5a commit 920e992
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions hardware_test/TVC.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
#include <string>


void TVC::SetXServo(double dAngle)
void TVC::SetTVCX(double dAngle)
{
dAngle += 90 + MissionConstants::kTvcYCenterAngle;
dAngle = (dAngle < 0) ? 0 : dAngle;
Expand All @@ -16,7 +16,7 @@ void TVC::SetXServo(double dAngle)



void TVC::SetYServo(double dAngle)
void TVC::SetTVCY(double dAngle)
{
dAngle += 90 + MissionConstants::kTvcYCenterAngle;
dAngle = (dAngle < 0) ? 0 : dAngle;
Expand Down

0 comments on commit 920e992

Please sign in to comment.