@@ -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,16 @@ 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 {
1578+ setParameter (
1579+ "rcSmoothingFeedforwardHz" ,
1580+ sysConfig . rc_smoothing_feedforward_hz ,
1581+ 0
1582+ ) ;
1583+ }
1584+
15751585 if ( semver . gte ( activeSysConfig . firmwareVersion , "4.5.0" ) ) {
15761586 setParameter ( "rcSmoothingRxSmoothed" , sysConfig . rc_smoothing_rx_smoothed , 0 ) ;
15771587 $ ( "#rcSmoothingRxSmoothed" ) . show ( ) ;
@@ -1597,11 +1607,6 @@ export function HeaderDialog(dialog, onSave) {
15971607 sysConfig . rc_smoothing_mode ,
15981608 RC_SMOOTHING_MODE
15991609 ) ;
1600- setParameter (
1601- "rcSmoothingFeedforwardHz" ,
1602- sysConfig . rc_smoothing_feedforward_hz ,
1603- 0
1604- ) ;
16051610 setParameter (
16061611 "rcSmoothingSetpointHz" ,
16071612 sysConfig . rc_smoothing_setpoint_hz ,
0 commit comments