Important Update:

- FunctionCore/SelectableCore:
  - Replace Channel->State with InState
  - Add Channel-OutState (ready for output) updated by ChannelStateEvent()
- TimingCore:
  - Add GetUpCounter() for calculating uptime string (in seconds)
This commit is contained in:
Charl Wentzel
2019-06-23 10:38:27 +02:00
parent 207caa696d
commit e9b50f1af9
4 changed files with 80 additions and 28 deletions

View File

@@ -38,7 +38,8 @@ struct SChannel
TChannelLink * FirstLink = NULL; // List of channels linked for input/output
EChannelState State = CH_off; // Channel ready to receive input
EChannelState InState = CH_off; // Channel ready to receive input (determined by parent function)
EChannelState OutState = CH_off; // Channel ready to send output (determined by InStates of linked channels)
TChannel * Next = NULL;
};