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:
parent
7e51f1ff5d
commit
1ca3527f92
3 changed files with 25 additions and 5 deletions
|
@ -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 {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue