1
0
Fork 0
mirror of https://github.com/betaflight/betaflight-configurator.git synced 2025-07-19 06:15:13 +03:00

Added tooltip explaining the delay when feature DISPLAY is enabled with no display device.

This commit is contained in:
Michael Keller 2017-01-10 09:48:34 +13:00
parent 603ea4e328
commit 7ec46d9da8
2 changed files with 4 additions and 1 deletions

View file

@ -515,6 +515,9 @@
"featureDISPLAY": { "featureDISPLAY": {
"message": "OLED Screen Display" "message": "OLED Screen Display"
}, },
"featureDISPLAYTip": {
"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."
},
"featureONESHOT125": { "featureONESHOT125": {
"message": "ONESHOT ESC support" "message": "ONESHOT ESC support"
}, },

View file

@ -20,7 +20,7 @@ var Features = function (config) {
{bit: 14, group: 'rxMode', mode: 'select', name: 'RX_MSP'}, {bit: 14, group: 'rxMode', mode: 'select', name: 'RX_MSP'},
{bit: 15, group: 'rssi', name: 'RSSI_ADC'}, {bit: 15, group: 'rssi', name: 'RSSI_ADC'},
{bit: 16, group: 'other', name: 'LED_STRIP'}, {bit: 16, group: 'other', name: 'LED_STRIP'},
{bit: 17, group: 'other', name: 'DISPLAY'}, {bit: 17, group: 'other', name: 'DISPLAY', haveTip: true},
{bit: 19, group: 'other', name: 'BLACKBOX', haveTip: true} {bit: 19, group: 'other', name: 'BLACKBOX', haveTip: true}
]; ];