File tree 3 files changed +13
-1
lines changed
3 files changed +13
-1
lines changed Original file line number Diff line number Diff line change @@ -2014,6 +2014,10 @@ <h5 class="modal-title-revision"></h5>
2014
2014
< label > D-Shot Offset %</ label >
2015
2015
< input type ="text " step ="0.01 " min ="0 " max ="1 " />
2016
2016
</ td >
2017
+ < td name ="motor_idle ">
2018
+ < label > Motor idle %</ label >
2019
+ < input type ="text " step ="0.01 " min ="0 " max ="1 " />
2020
+ </ td >
2017
2021
< td name ="motorOutputLow ">
2018
2022
< label > D-Shot Motor Low</ label >
2019
2023
< input type ="text " step ="10 " min ="0 " max ="2047 " />
Original file line number Diff line number Diff line change @@ -817,6 +817,7 @@ export function FlightLogParser(logData) {
817
817
}
818
818
break ;
819
819
820
+ case "motor_idle" :
820
821
case "digitalIdleOffset" :
821
822
that . sysConfig [ fieldName ] = parseInt ( fieldValue , 10 ) / 100.0 ;
822
823
Original file line number Diff line number Diff line change @@ -323,6 +323,12 @@ export function HeaderDialog(dialog, onSave) {
323
323
name : "digitalIdleOffset" ,
324
324
type : FIRMWARE_TYPE_BETAFLIGHT ,
325
325
min : "3.1.0" ,
326
+ max : "4.5.1" ,
327
+ } ,
328
+ {
329
+ name : "motor_idle" ,
330
+ type : FIRMWARE_TYPE_BETAFLIGHT ,
331
+ min : "4.6.0" ,
326
332
max : "999.9.9" ,
327
333
} ,
328
334
{
@@ -665,7 +671,7 @@ export function HeaderDialog(dialog, onSave) {
665
671
name : "dyn_idle_start_increase" ,
666
672
type : FIRMWARE_TYPE_BETAFLIGHT ,
667
673
min : "4.5.0" ,
668
- max : "999.9.9 " ,
674
+ max : "4.5.1 " ,
669
675
} ,
670
676
{
671
677
name : "dyn_idle_max_increase" ,
@@ -1783,6 +1789,7 @@ export function HeaderDialog(dialog, onSave) {
1783
1789
renderSelect ( "debug_mode" , sysConfig . debug_mode , DEBUG_MODE ) ;
1784
1790
setParameter ( "motorOutputLow" , sysConfig . motorOutput [ 0 ] , 0 ) ;
1785
1791
setParameter ( "motorOutputHigh" , sysConfig . motorOutput [ 1 ] , 0 ) ;
1792
+ setParameter ( "motor_idle" , sysConfig . motor_idle , 2 ) ;
1786
1793
setParameter ( "digitalIdleOffset" , sysConfig . digitalIdleOffset , 2 ) ;
1787
1794
renderSelect (
1788
1795
"antiGravityMode" ,
You can’t perform that action at this time.
0 commit comments