Important changes to repositories hosted on mbed.com
Mbed hosted mercurial repositories are deprecated and are due to be permanently deleted in July 2026.
To keep a copy of this software download the repository Zip archive or clone locally using Mercurial.
It is also possible to export all your personal repositories from the account settings page.
Fork of LGstaandart by
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__ */
