mirror of
https://github.com/betaflight/betaflight-configurator.git
synced 2025-07-26 09:45:28 +03:00
Merge pull request #2383 from haslinghuis/fix_virtualfc
Fix VirtualFC TypeError
This commit is contained in:
commit
5444ce37c3
1 changed files with 5 additions and 1 deletions
|
@ -19,7 +19,11 @@ const VirtualFC = {
|
||||||
virtualFC.MIXER_CONFIG.mixer = 3;
|
virtualFC.MIXER_CONFIG.mixer = 3;
|
||||||
|
|
||||||
virtualFC.MOTOR_DATA = Array.from({length: 8});
|
virtualFC.MOTOR_DATA = Array.from({length: 8});
|
||||||
virtualFC.MOTOR_3D_CONFIG = true;
|
virtualFC.MOTOR_3D_CONFIG = {
|
||||||
|
deadband3d_low: 1406,
|
||||||
|
deadband3d_high: 1514,
|
||||||
|
neutral: 1460,
|
||||||
|
};
|
||||||
virtualFC.MOTOR_CONFIG = {
|
virtualFC.MOTOR_CONFIG = {
|
||||||
minthrottle: 1070,
|
minthrottle: 1070,
|
||||||
maxthrottle: 2000,
|
maxthrottle: 2000,
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue