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

Add support for ELRS UID (#3097)

* Add support for ELRS UID

* Add Babel

* Fix review

* Fix CSS
This commit is contained in:
haslinghuis 2022-12-05 04:24:37 +01:00 committed by GitHub
parent a7b53afe13
commit 6242f1e721
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
10 changed files with 934 additions and 17 deletions

View file

@ -1,16 +1,44 @@
import { i18n } from "../localization";
const MD5 = require('md5.js');
const receiver = {
rateChartHeight: 117,
analyticsChanges: {},
needReboot: false,
elrsPassphraseEnabled: false,
};
receiver.initialize = function (callback) {
const tab = this;
if (GUI.active_tab !== 'receiver') {
GUI.active_tab = 'receiver';
GUI.active_tab = 'receiver';
function lookup_elrs_passphrase(uidString) {
const passphraseMap = ConfigStorage.get('passphrase_map').passphrase_map || {};
return passphraseMap[uidString] ?? 0;
}
function save_elrs_passphrase(uidString, passphrase) {
const passphraseMap = ConfigStorage.get('passphrase_map').passphrase_map ?? {};
passphraseMap[uidString] = passphrase;
ConfigStorage.set({'passphrase_map': passphraseMap});
}
function elrs_passphrase_to_bytes(text) {
let uidBytes = [0,0,0,0,0,0];
if (text) {
const bindingPhraseFull = `-DMY_BINDING_PHRASE="${text}"`;
const md5stream = new MD5();
md5stream.end(bindingPhraseFull);
const buffer = md5stream.read().subarray(0, 6);
uidBytes = Uint8Array.from(buffer);
}
return uidBytes;
}
function get_rc_data() {
@ -336,8 +364,34 @@ receiver.initialize = function (callback) {
},
});
}
}
if (FC.FEATURE_CONFIG.features.isEnabled('RX_SPI') && FC.RX_CONFIG.rxSpiProtocol == 19 && semver.gte(FC.CONFIG.apiVersion, API_VERSION_1_45)) {
tab.elrsPassphraseEnabled = true;
const elrsUid = $('span.elrsUid');
const elrsUidString = FC.RX_CONFIG.elrsUid.join(',');
elrsUid.text(elrsUidString);
const elrsPassphrase = $('input.elrsPassphrase');
const passphraseString = lookup_elrs_passphrase(elrsUidString);
if (passphraseString) {
elrsPassphrase.val(passphraseString);
}
elrsPassphrase.on('keyup', function() {
const passphrase = elrsPassphrase.val();
if (passphrase) {
elrsUid.text(elrs_passphrase_to_bytes(passphrase));
} else {
elrsUid.text("0.0.0.0.0.0");
}
updateSaveButton(true);
});
} else {
tab.elrsPassphraseEnabled = false;
}
}
// UI Hooks
@ -381,6 +435,11 @@ receiver.initialize = function (callback) {
}
}
function checkShowElrsPassphrase() {
$('#elrsContainer').toggle(tab.elrsPassphraseEnabled);
$('input.elrsUid').toggle(tab.elrsPassphraseEnabled);
}
$(featuresElement).filter('select').change(function () {
const element = $(this);
FC.FEATURE_CONFIG.features.updateData(element);
@ -388,12 +447,14 @@ receiver.initialize = function (callback) {
if (element.attr('name') === 'rxMode') {
checkShowSerialRxBox();
checkShowSpiRxBox();
checkShowElrsPassphrase();
updateSaveButton(true);
}
});
checkShowSerialRxBox();
checkShowSpiRxBox();
checkShowElrsPassphrase();
updateSaveButton();
$('a.refresh').click(function () {
@ -442,6 +503,19 @@ receiver.initialize = function (callback) {
FC.RX_CONFIG.rcSmoothingAutoFactor = parseInt($('input[name="rcSmoothingAutoFactor-number"]').val());
}
if (tab.elrsPassphraseEnabled) {
const elrsUidChars = $('span.elrsUid')[0].innerText.split(',').map(uidChar => parseInt(uidChar, 10));
if (elrsUidChars.length === 6) {
FC.RX_CONFIG.elrsUid = elrsUidChars;
const elrsUid = $('span.elrsUid')[0].innerText;
const elrsPassphrase = $('input.elrsPassphrase').val();
save_elrs_passphrase(elrsUid, elrsPassphrase);
} else {
FC.RX_CONFIG.elrsUid = [0, 0, 0, 0, 0, 0];
}
}
function save_rssi_config() {
MSP.send_message(MSPCodes.MSP_SET_RSSI_CONFIG, mspHelper.crunch(MSPCodes.MSP_SET_RSSI_CONFIG), false, save_rc_configs);
}