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:
commit
3cc363cbcb
1 changed files with 5 additions and 1 deletions
|
@ -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() {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue