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

Add display name to config, backup/restore and OSD

This commit is contained in:
Sean M 2018-10-13 00:22:14 -04:00 committed by mikeller
parent d502e69bb2
commit ab83c79315
5 changed files with 25 additions and 2 deletions

View file

@ -515,7 +515,6 @@ TABS.configuration.initialize = function (callback, scrollPosition) {
$('input[name="craftName"]').val(CONFIG.name);
if (semver.gte(CONFIG.apiVersion, "1.31.0")) {
$('input[name="fpvCamAngleDegrees"]').val(RX_CONFIG.fpvCamAngleDegrees);
} else {
@ -1117,7 +1116,7 @@ TABS.configuration.initialize = function (callback, scrollPosition) {
function save_sensor_alignment() {
var next_callback = save_esc_protocol;
MSP.send_message(MSPCodes.MSP_SET_SENSOR_ALIGNMENT, mspHelper.crunch(MSPCodes.MSP_SET_SENSOR_ALIGNMENT), false, next_callback);
MSP.send_message(MSPCodes.MSP_SET_SENSOR_ALIGNMENT, mspHelper.crunch(MSPCodes.MSP_SET_SENSOR_ALIGNMENT), false, next_callback);
}
function save_esc_protocol() {
var next_callback = save_acc_trim;