Skip to content

Commit

Permalink
reduce lower limit of matrix max hz to 400. (emuflight#557)
Browse files Browse the repository at this point in the history
* allow for lower max for bigger craft with lower noise profiles
* does not modify default value of 600

Co-authored-by: Kevin Plaizier <[email protected]>
  • Loading branch information
nerdCopter and Quick-Flash authored May 9, 2021
1 parent 0f54e87 commit 0a99057
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/main/interface/settings.c
Original file line number Diff line number Diff line change
Expand Up @@ -545,7 +545,7 @@ const clivalue_t valueTable[] = {
#if defined(USE_GYRO_DATA_ANALYSE)
{ "dynamic_gyro_notch_q", VAR_UINT16 | MASTER_VALUE, .config.minmax = { 1, 1000 }, PG_GYRO_CONFIG, offsetof(gyroConfig_t, dyn_notch_q_factor) },
{ "dynamic_gyro_notch_min_hz", VAR_UINT16 | MASTER_VALUE, .config.minmax = { 30, 1000 }, PG_GYRO_CONFIG, offsetof(gyroConfig_t, dyn_notch_min_hz) },
{ "dynamic_gyro_notch_max_hz", VAR_UINT16 | MASTER_VALUE, .config.minmax = { 600, 1000 }, PG_GYRO_CONFIG, offsetof(gyroConfig_t, dyn_notch_max_hz) },
{ "dynamic_gyro_notch_max_hz", VAR_UINT16 | MASTER_VALUE, .config.minmax = { 400, 1000 }, PG_GYRO_CONFIG, offsetof(gyroConfig_t, dyn_notch_max_hz) },
#endif

// PG_ACCELEROMETER_CONFIG
Expand Down

0 comments on commit 0a99057

Please sign in to comment.