mirror of
https://github.com/betaflight/betaflight-configurator.git
synced 2025-07-23 16:25:22 +03:00
Implemented support for MSP jumbo frames, switched dataflash reading to be using jumbo frames.
Set default serial speed to 500000 kbps.
This commit is contained in:
parent
e61ef7bb93
commit
76a1473187
7 changed files with 86 additions and 25 deletions
|
@ -110,7 +110,7 @@ $(document).ready(function () {
|
|||
$('input.auto_connect').prop('checked', true);
|
||||
$('input.auto_connect, span.auto_connect').prop('title', chrome.i18n.getMessage('autoConnectEnabled'));
|
||||
|
||||
$('select#baud').val(115200).prop('disabled', true);
|
||||
$('select#baud').val(500000).prop('disabled', true);
|
||||
} else {
|
||||
// disabled by user
|
||||
GUI.auto_connect = false;
|
||||
|
@ -127,7 +127,7 @@ $(document).ready(function () {
|
|||
if (GUI.auto_connect) {
|
||||
$('input.auto_connect, span.auto_connect').prop('title', chrome.i18n.getMessage('autoConnectEnabled'));
|
||||
|
||||
$('select#baud').val(115200).prop('disabled', true);
|
||||
$('select#baud').val(500000).prop('disabled', true);
|
||||
} else {
|
||||
$('input.auto_connect, span.auto_connect').prop('title', chrome.i18n.getMessage('autoConnectDisabled'));
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue