@@ -623,7 +623,7 @@ export function HeaderDialog(dialog, onSave) {
623623 name : "rc_smoothing_active_cutoffs_ff" ,
624624 type : FIRMWARE_TYPE_BETAFLIGHT ,
625625 min : "4.3.0" ,
626- max : "999.9.9 " ,
626+ max : "4.5.999 " ,
627627 } ,
628628 {
629629 name : "rc_smoothing_active_cutoffs_sp" ,
@@ -1572,6 +1572,12 @@ export function HeaderDialog(dialog, onSave) {
15721572
15731573 $ ( ".dshot_bidir_required" ) . toggle ( sysConfig . dshot_bidir == 1 ) ;
15741574
1575+ if ( semver . gte ( activeSysConfig . firmwareVersion , "4.6.0" ) ) {
1576+ $ ( "#rcSmoothingFeedforwardHz" ) . hide ( ) ;
1577+ } else if ( semver . gte ( activeSysConfig . firmwareVersion , "4.3.0" ) ) {
1578+ setParameter ( "rcSmoothingFeedforwardHz" , sysConfig . rc_smoothing_feedforward_hz , 0 ) ;
1579+ }
1580+
15751581 if ( semver . gte ( activeSysConfig . firmwareVersion , "4.5.0" ) ) {
15761582 setParameter ( "rcSmoothingRxSmoothed" , sysConfig . rc_smoothing_rx_smoothed , 0 ) ;
15771583 $ ( "#rcSmoothingRxSmoothed" ) . show ( ) ;
@@ -1597,11 +1603,6 @@ export function HeaderDialog(dialog, onSave) {
15971603 sysConfig . rc_smoothing_mode ,
15981604 RC_SMOOTHING_MODE
15991605 ) ;
1600- setParameter (
1601- "rcSmoothingFeedforwardHz" ,
1602- sysConfig . rc_smoothing_feedforward_hz ,
1603- 0
1604- ) ;
16051606 setParameter (
16061607 "rcSmoothingSetpointHz" ,
16071608 sysConfig . rc_smoothing_setpoint_hz ,
0 commit comments