Skip to content

Commit

Permalink
naming scheme typos
Browse files Browse the repository at this point in the history
  • Loading branch information
clowdur committed Aug 5, 2023
1 parent b7a94f6 commit f45aec3
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/world_interface/real_world_constants.h
Original file line number Diff line number Diff line change
Expand Up @@ -91,9 +91,9 @@ constexpr auto potMotors = frozen::make_unordered_map<motorid_t, potparams_t>(
{.adc_lo = 700, .mdeg_lo = -1 * Constants::STEERING_ROTATION_LIMIT * 1000, .adc_hi = 1350, .mdeg_hi = Constants::STEERING_ROTATION_LIMIT * 1000}},
{motorid_t::frontRightSteer,
{.adc_lo = 700, .mdeg_lo = -1 * Constants::STEERING_ROTATION_LIMIT * 1000, .adc_hi = 1350, .mdeg_hi = Constants::STEERING_ROTATION_LIMIT * 1000}},
{motorid_t::backLeftSteer,
{motorid_t::rearLeftSteer,
{.adc_lo = 700, .mdeg_lo = -1 * Constants::STEERING_ROTATION_LIMIT * 1000, .adc_hi = 1350, .mdeg_hi = Constants::STEERING_ROTATION_LIMIT * 1000}},
{motorid_t::backRightSteer,
{motorid_t::rearRightSteer,
{.adc_lo = 700, .mdeg_lo = -1 * Constants::STEERING_ROTATION_LIMIT * 1000, .adc_hi = 1350, .mdeg_hi = Constants::STEERING_ROTATION_LIMIT * 1000}}});

/** @brief A mapping of motorids to their corresponding serial number. */
Expand Down

0 comments on commit f45aec3

Please sign in to comment.