mirror of
https://github.com/betaflight/betaflight.git
synced 2025-07-26 01:35:41 +03:00
Add BLACKBOX feature tickbox and Blackbox port scenarios
This commit is contained in:
parent
6df04c151a
commit
38e9db1aca
2 changed files with 5 additions and 2 deletions
|
@ -76,7 +76,8 @@ TABS.configuration.initialize = function (callback, scrollPosition) {
|
||||||
{bit: 15, group: 'rssi', name: 'RSSI_ADC', description: 'Analog RSSI input'},
|
{bit: 15, group: 'rssi', name: 'RSSI_ADC', description: 'Analog RSSI input'},
|
||||||
{bit: 16, group: 'other', name: 'LED_STRIP', description: 'Addressable RGB LED strip support'},
|
{bit: 16, group: 'other', name: 'LED_STRIP', description: 'Addressable RGB LED strip support'},
|
||||||
{bit: 17, group: 'other', name: 'DISPLAY', description: 'OLED Screen Display'},
|
{bit: 17, group: 'other', name: 'DISPLAY', description: 'OLED Screen Display'},
|
||||||
{bit: 18, group: 'esc', name: 'ONESHOT125', description: 'ONESHOT ESC support (disconnect ESCs, remove props)'}
|
{bit: 18, group: 'esc', name: 'ONESHOT125', description: 'ONESHOT ESC support (disconnect ESCs, remove props)'},
|
||||||
|
{bit: 19, group: 'other', name: 'BLACKBOX', description: 'Blackbox flight data recorder'}
|
||||||
];
|
];
|
||||||
|
|
||||||
var radioGroups = [];
|
var radioGroups = [];
|
||||||
|
|
|
@ -37,7 +37,9 @@ TABS.ports.initialize = function (callback, scrollPosition) {
|
||||||
'CLI',
|
'CLI',
|
||||||
'GPS Passthrough',
|
'GPS Passthrough',
|
||||||
'MSP',
|
'MSP',
|
||||||
'SmartPort Telemetry'
|
'SmartPort Telemetry',
|
||||||
|
'Blackbox',
|
||||||
|
'MSP, CLI, Blackbox (when armed), GPS Passthrough'
|
||||||
];
|
];
|
||||||
|
|
||||||
var portIdentifierToNameMapping = {
|
var portIdentifierToNameMapping = {
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue