diff options
author | Michael J. Chudobiak <mjc@avtechpulse.com> | 2012-10-13 09:05:22 -0400 |
---|---|---|
committer | Michael J. Chudobiak <mjc@avtechpulse.com> | 2012-10-13 09:05:22 -0400 |
commit | 72b80d3dc84988f8a934395e07e174418a66457f (patch) | |
tree | f896669c765e8bc4a2a9469a303d1d315b70f77e /globals.h | |
parent | 8ce0e125a199413c6247c038dfce288bb7e24942 (diff) |
started fixing control mode handling
Diffstat (limited to 'globals.h')
-rw-r--r-- | globals.h | 6 |
1 files changed, 6 insertions, 0 deletions
@@ -785,6 +785,11 @@ typedef struct { typedef struct { + int connections; +} RemoteStruct; + + +typedef struct { ConstraintsStruct Constraints; ChannelStruct ChannelState[max_channels]; FlashStruct Flash; @@ -795,6 +800,7 @@ typedef struct { FlagStruct DefaultFlags; TimeStruct Timers; MenuStatusStruct MenuStatus; + RemoteStruct Remote; int control_mode; // FIXME and all instances of control_mode } GlobalStruct; |