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

Merge pull request #94 from antstorm/fix-model-yaw-in-receiver-tab

Fix model yaw input in Receiver tab. Fixes #92
This commit is contained in:
Michael Keller 2016-07-07 12:33:35 +12:00 committed by GitHub
commit 3cc363cbcb

View file

@ -20,7 +20,11 @@ TABS.receiver.initialize = function (callback) {
}
function get_bt_config_data() {
MSP.send_message(MSP_codes.MSP_BF_CONFIG, false, false, get_rc_map);
MSP.send_message(MSP_codes.MSP_BF_CONFIG, false, false, get_special_parameters_data);
}
function get_special_parameters_data() {
MSP.send_message(MSP_codes.MSP_SPECIAL_PARAMETERS, false, false, get_rc_map);
}
function get_rc_map() {