Dmitry Kovalev / Mbed 2 deprecated LGfiltr

Dependencies:   mbed

Fork of LGstaandart by Dmitry Kovalev

DevicePLCS.h

Committer:
Diletant
Date:
2016-05-03
Revision:
149:abbf7663d27d
Child:
156:e68ee0bcdcda

File content as of revision 149:abbf7663d27d:

#ifndef __DEVICE_PLCS_H__
#define __DEVICE_PLCS_H__

typedef struct _DevicePathLengthControlSystemSettings {
} DevicePathLengthControlSystemSettings;

typedef struct _DevicePathLengthControlSystemState {
  uint8_t loop;
  uint8_t modulation;
} DevicePathLengthControlSystemState;

typedef struct _DevicePathLengthControlSystem {
  DevicePathLengthControlSystemSettings settings;
  DevicePathLengthControlSystemState state;
} DevicePathLengthControlSystem;

void InitPathLengthControlSystemWithDefaults(void);
void InitPathLengthControlSystem(void);
void StartPathLengthControlSystem(void);

#endif  /* __DEVICE_PLCS_H__ */