Skip to content

Commit

Permalink
RC4b5: Added patch version of RC4 - NOT UPLOADED TO ROVER ON 10/19 RC…
Browse files Browse the repository at this point in the history
…4 op. This version was used for testing rover in cleanroom during RC5 opportunity, prior to actually using RC5 code.
  • Loading branch information
iris-hermes-mobile committed Oct 26, 2022
1 parent 1a4d28c commit 3805adf
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,6 @@

static const unsigned VERSION_MAJOR = 4; // Version: ++ when drafting a new Release Candidate (for a new upload opportunity)
static const unsigned VERSION_MINOR = 3; // Subversion: ++ when a new major feature has been added / made to work
static const unsigned VERSION_REVISION = 0; // Patch: ++ when you make a change and want to reflect that.
static const unsigned VERSION_REVISION = 1; // Patch: ++ when you make a change and want to reflect that.

#endif // _VERSION_H_
2 changes: 1 addition & 1 deletion Apps/FlightSoftware/fprime/CubeRover/IMU/IMUComponent.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -97,7 +97,7 @@ namespace CubeRover {
computePitchRoll(&pitch, &roll);

if(fabs(pitch) > MAX_ROVER_PITCH_ANGLE || fabs(roll) > MAX_ROVER_ROLL_ANGLE)
log_WARNING_HI_IMU_AngleWarning();
// log_WARNING_HI_IMU_AngleWarning();
}

/**
Expand Down

0 comments on commit 3805adf

Please sign in to comment.