mirror of
https://github.com/iNavFlight/inav-configurator.git
synced 2025-07-15 04:15:28 +03:00
Allow for PID bank 11
This commit is contained in:
parent
1178ccaa0e
commit
b92c852ff9
1 changed files with 2 additions and 2 deletions
4
js/fc.js
4
js/fc.js
|
@ -130,8 +130,8 @@ var FC = {
|
||||||
};
|
};
|
||||||
|
|
||||||
PID_names = [];
|
PID_names = [];
|
||||||
PIDs = new Array(10);
|
PIDs = new Array(11);
|
||||||
for (var i = 0; i < 10; i++) {
|
for (let i = 0; i < PIDs.length; i++) {
|
||||||
PIDs[i] = new Array(4);
|
PIDs[i] = new Array(4);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue