mirror of
https://github.com/betaflight/betaflight-configurator.git
synced 2025-07-19 22:35:17 +03:00
Support new Blackbox baudrates including new 230400 rate
This commit is contained in:
parent
1dbf77c777
commit
aa8d5300e5
2 changed files with 7 additions and 2 deletions
|
@ -108,7 +108,8 @@ var MSP = {
|
|||
'19200',
|
||||
'38400',
|
||||
'57600',
|
||||
'115200'
|
||||
'115200',
|
||||
'230400',
|
||||
],
|
||||
|
||||
serialPortFunctions: // in LSB bit order
|
||||
|
|
|
@ -48,7 +48,11 @@ TABS.ports.initialize = function (callback, scrollPosition) {
|
|||
];
|
||||
|
||||
var blackboxBaudRates = [
|
||||
'115200'
|
||||
'19200',
|
||||
'38400',
|
||||
'57600',
|
||||
'115200',
|
||||
'230400',
|
||||
];
|
||||
|
||||
var columns = ['data', 'logging', 'gps', 'telemetry', 'rx'];
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue