1
0
Fork 0
mirror of https://github.com/iNavFlight/inav.git synced 2025-07-20 23:05:17 +03:00

Updates with tested code and docs

Fixed typo
Updated document
Finished & tested LCs for:
- Delay
- Timer
- Delta
- Approx. Equal
This commit is contained in:
Darren Lines 2022-12-01 19:36:35 +00:00
parent 026e40c297
commit 10dc8d91dc
3 changed files with 29 additions and 17 deletions

View file

@ -193,6 +193,7 @@ PG_DECLARE_ARRAY(logicCondition_t, MAX_LOGIC_CONDITIONS, logicConditions);
typedef struct logicConditionState_s {
int value;
int32_t lastValue;
uint8_t flags;
timeMs_t timeout;
} logicConditionState_t;