Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/iNavFlight/inav-configurator.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/js
diff options
context:
space:
mode:
authorPawel Spychalski (DzikuVx) <pspychalski@gmail.com>2020-07-23 12:02:51 +0300
committerPawel Spychalski (DzikuVx) <pspychalski@gmail.com>2020-07-23 12:02:51 +0300
commit24bf8cf312f52610a926c1295a4092af1c426592 (patch)
tree61cb9be610ae42fcb3a9fd8a26a4e0a2bd9a2507 /js
parentac1cac4beb73c7a4df828be293dc3b024f65bfb0 (diff)
Integrate Actions into Logic Conditions
Diffstat (limited to 'js')
-rw-r--r--js/fc.js52
1 files changed, 51 insertions, 1 deletions
diff --git a/js/fc.js b/js/fc.js
index 48cdfb70..012c1fe5 100644
--- a/js/fc.js
+++ b/js/fc.js
@@ -1126,10 +1126,60 @@ var FC = {
hasOperand: [true, true],
output: "none"
},
- 128: {
+ 21: {
name: "IO PORT SET",
hasOperand: [true, true],
output: "none"
+ },
+ 22: {
+ name: "OVERRIDE ARMING SAFETY",
+ hasOperand: [false, false],
+ output: "none"
+ },
+ 23: {
+ name: "OVERRIDE THROTTLE SCALE",
+ hasOperand: [true, false],
+ output: "none"
+ },
+ 24: {
+ name: "SWAP ROLL & YAW",
+ hasOperand: [false, false],
+ output: "none"
+ },
+ 25: {
+ name: "SET VTX POWER LEVEL",
+ hasOperand: [true, false],
+ output: "none"
+ },
+ 30: {
+ name: "SET VTX BAND",
+ hasOperand: [true, false],
+ output: "none"
+ },
+ 31: {
+ name: "SET VTX CHANNEL",
+ hasOperand: [true, false],
+ output: "none"
+ },
+ 26: {
+ name: "INVERT ROLL",
+ hasOperand: [false, false],
+ output: "none"
+ },
+ 27: {
+ name: "INVERT PITCH",
+ hasOperand: [false, false],
+ output: "none"
+ },
+ 28: {
+ name: "INVERT YAW",
+ hasOperand: [false, false],
+ output: "none"
+ },
+ 29: {
+ name: "OVERRIDE THROTTLE",
+ hasOperand: [true, false],
+ output: "none"
}
}
},