Skip to content

Commit 10c57eb

Browse files
committed
2 parents cf37266 + f37f5ce commit 10c57eb

File tree

4 files changed

+11
-1
lines changed

4 files changed

+11
-1
lines changed

_locales/en/messages.json

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -515,6 +515,9 @@
515515
"featureDISPLAY": {
516516
"message": "OLED Screen Display"
517517
},
518+
"featureDISPLAYTip": {
519+
"message": "If this feature is enabled, and no display device is connected (or the display device is not powered up), there will be a delay of approx. 10 seconds on every reboot of the flight controller."
520+
},
518521
"featureONESHOT125": {
519522
"message": "ONESHOT ESC support"
520523
},
@@ -1833,6 +1836,9 @@
18331836
"configurationEscProtocol": {
18341837
"message": "ESC/Motor protocol"
18351838
},
1839+
"configurationEscProtocolHelp": {
1840+
"message": "Select here your motor protocol. <br>Make sure to verify product site of your ESC to what protocol is supported. <br> <b>Be carefull using DSHOT900 and DSHOT1200 as not many ESC's support it!</b>"
1841+
},
18361842
"configurationunsyndePwm": {
18371843
"message": "Motor PWM speed Separated from PID speed"
18381844
},

js/Features.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ var Features = function (config) {
2020
{bit: 14, group: 'rxMode', mode: 'select', name: 'RX_MSP'},
2121
{bit: 15, group: 'rssi', name: 'RSSI_ADC'},
2222
{bit: 16, group: 'other', name: 'LED_STRIP'},
23-
{bit: 17, group: 'other', name: 'DISPLAY'},
23+
{bit: 17, group: 'other', name: 'DISPLAY', haveTip: true},
2424
{bit: 19, group: 'other', name: 'BLACKBOX', haveTip: true}
2525
];
2626

tabs/configuration.html

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -38,6 +38,7 @@
3838
<!-- list generated here -->
3939
</select>
4040
<span i18n="configurationEscProtocol"></span>
41+
<div class="helpicon cf_tip" i18n_title="configurationEscProtocolHelp"></div>
4142
</label>
4243
</div>
4344
<div class="checkboxPwm" style="border-bottom: 1px solid #ddd; padding-bottom: 5px;">

tabs/configuration.js

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -227,12 +227,15 @@ TABS.configuration.initialize = function (callback, scrollPosition) {
227227
$('div.minthrottle').hide();
228228
$('div.maxthrottle').hide();
229229
$('div.mincommand').hide();
230+
$('div.checkboxPwm').hide();
231+
$('div.unsyncedpwmfreq').hide();
230232

231233
$('div.digitalIdlePercent').show();
232234
} else {
233235
$('div.minthrottle').show();
234236
$('div.maxthrottle').show();
235237
$('div.mincommand').show();
238+
$('div.checkboxPwm').show();
236239

237240
$('div.digitalIdlePercent').hide();
238241
}

0 commit comments

Comments
 (0)