1
0
Fork 0
mirror of https://github.com/iNavFlight/inav.git synced 2025-07-20 14:55:18 +03:00

Added EDGE switch to Logical Conditions

This commit is contained in:
Darren Lines 2022-11-24 18:37:34 +00:00
parent 7e51f1ff5d
commit 1ca3527f92
3 changed files with 25 additions and 5 deletions

View file

@ -167,7 +167,8 @@ typedef enum {
} logicConditionsGlobalFlags_t;
typedef enum {
LOGIC_CONDITION_FLAG_LATCH = 1 << 0,
LOGIC_CONDITION_FLAG_LATCH = 1 << 0,
LOGIC_CONDITION_FLAG_EDGE_SATISFIED = 1 << 1,
} logicConditionFlags_e;
typedef struct logicOperand_s {