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

Fix pit mode frequency (#3497)

This commit is contained in:
Mark Haslinghuis 2023-06-27 16:44:51 +02:00 committed by GitHub
parent c582fc2453
commit 25447aef55
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -947,6 +947,7 @@ vtx.initialize = function (callback) {
}
FC.VTX_CONFIG.vtx_power = parseInt($("#vtx_power").val());
FC.VTX_CONFIG.vtx_pit_mode = $("#vtx_pit_mode").prop('checked');
FC.VTX_CONFIG.vtx_pit_mode_frequency = parseInt($("#vtx_pit_mode_frequency").val());
FC.VTX_CONFIG.vtx_low_power_disarm = parseInt($("#vtx_low_power_disarm").val());
FC.VTX_CONFIG.vtx_table_clear = true;