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

Support new Blackbox baudrates including new 230400 rate

This commit is contained in:
Nicholas Sherlock 2015-03-06 19:58:57 +13:00
parent 1dbf77c777
commit aa8d5300e5
2 changed files with 7 additions and 2 deletions

View file

@ -108,7 +108,8 @@ var MSP = {
'19200',
'38400',
'57600',
'115200'
'115200',
'230400',
],
serialPortFunctions: // in LSB bit order

View file

@ -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'];