123

Dependencies:   mbed

Fork of LG by igor Apu

Committer:
Diletant
Date:
Tue May 03 05:12:26 2016 +0000
Revision:
149:abbf7663d27d
Child:
156:e68ee0bcdcda
Device & ... update. Not final!!!

Who changed what in which revision?

UserRevisionLine numberNew contents of line
Diletant 149:abbf7663d27d 1 #ifndef __DEVICE_PLCS_H__
Diletant 149:abbf7663d27d 2 #define __DEVICE_PLCS_H__
Diletant 149:abbf7663d27d 3
Diletant 149:abbf7663d27d 4 typedef struct _DevicePathLengthControlSystemSettings {
Diletant 149:abbf7663d27d 5 } DevicePathLengthControlSystemSettings;
Diletant 149:abbf7663d27d 6
Diletant 149:abbf7663d27d 7 typedef struct _DevicePathLengthControlSystemState {
Diletant 149:abbf7663d27d 8 uint8_t loop;
Diletant 149:abbf7663d27d 9 uint8_t modulation;
Diletant 149:abbf7663d27d 10 } DevicePathLengthControlSystemState;
Diletant 149:abbf7663d27d 11
Diletant 149:abbf7663d27d 12 typedef struct _DevicePathLengthControlSystem {
Diletant 149:abbf7663d27d 13 DevicePathLengthControlSystemSettings settings;
Diletant 149:abbf7663d27d 14 DevicePathLengthControlSystemState state;
Diletant 149:abbf7663d27d 15 } DevicePathLengthControlSystem;
Diletant 149:abbf7663d27d 16
Diletant 149:abbf7663d27d 17 void InitPathLengthControlSystemWithDefaults(void);
Diletant 149:abbf7663d27d 18 void InitPathLengthControlSystem(void);
Diletant 149:abbf7663d27d 19 void StartPathLengthControlSystem(void);
Diletant 149:abbf7663d27d 20
Diletant 149:abbf7663d27d 21 #endif /* __DEVICE_PLCS_H__ */