mirror of
https://github.com/iNavFlight/inav-configurator.git
synced 2025-07-14 11:59:51 +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 = [];
|
||||
PIDs = new Array(10);
|
||||
for (var i = 0; i < 10; i++) {
|
||||
PIDs = new Array(11);
|
||||
for (let i = 0; i < PIDs.length; i++) {
|
||||
PIDs[i] = new Array(4);
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue