Skip to content

Commit

Permalink
Merge pull request #67 from Pitt-RAS/accel-var
Browse files Browse the repository at this point in the history
Tune of the variance on the accelerometer and increase update rate
  • Loading branch information
amiller27 authored Jun 5, 2018
2 parents 5cc1399 + 862b527 commit f292196
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions include/iarc7_fc_comms/CommonConf.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ enum class FcCommsStatus

struct CommonConf
{
static constexpr const float kFcSensorsUpdateRateHz{100};
static constexpr const float kFcSensorsUpdateRateHz{200};

static constexpr const double kMaxArmDelay = 0.1;
static constexpr const double kLandingDetectedStartupTimeout = 5.0;
Expand All @@ -45,7 +45,7 @@ struct CommonConf
static constexpr const char* kTfChildName{"quad"};

// Variance of acceleration measurements (in m/2^2)
static constexpr const double kAccelerationVariance[3] = {6.0, 6.0, 6.0};
static constexpr const double kAccelerationVariance[3] = {100, 100, 4};
};

} // namespace FcComms
Expand Down

0 comments on commit f292196

Please sign in to comment.