123

Dependencies:   mbed

Fork of LG by igor Apu

Committer:
Kovalev_D
Date:
Wed Oct 19 10:55:05 2016 +0000
Revision:
197:7a05523bf588
Parent:
167:bedc0a9d559a
modul

Who changed what in which revision?

UserRevisionLine numberNew contents of line
Diletant 161:efd949e8d536 1 #ifndef __DEVICE_ISACS_POTENTIOMETERS_H__
Diletant 161:efd949e8d536 2 #define __DEVICE_ISACS_POTENTIOMETERS_H__
Diletant 161:efd949e8d536 3
Diletant 161:efd949e8d536 4 typedef struct _DeviceISACSPotentiometersSettings {
Diletant 161:efd949e8d536 5 uint32_t a;
Diletant 161:efd949e8d536 6 uint32_t b;
Diletant 161:efd949e8d536 7 } DeviceISACSPotentiometersSettings;
Diletant 161:efd949e8d536 8
Diletant 161:efd949e8d536 9 typedef struct _DeviceISACSPotentiometersState {
Diletant 161:efd949e8d536 10 uint32_t a;
Diletant 161:efd949e8d536 11 uint32_t b;
Diletant 161:efd949e8d536 12 } DeviceISACSPotentiometersState;
Diletant 161:efd949e8d536 13
Diletant 161:efd949e8d536 14 typedef struct _DeviceISACSPotentiometers {
Diletant 161:efd949e8d536 15 DeviceISACSPotentiometersSettings settings;
Diletant 161:efd949e8d536 16 DeviceISACSPotentiometersState state;
Diletant 161:efd949e8d536 17 } DeviceISACSPotentiometers;
Diletant 161:efd949e8d536 18
Diletant 167:bedc0a9d559a 19 void InitISACSPotentiometersDefaultSettings(void);
Diletant 167:bedc0a9d559a 20 void InitISACSPotentiometersState(void);
Diletant 167:bedc0a9d559a 21 void DeviceStartISACSPotentiometers(void);
Diletant 167:bedc0a9d559a 22
Diletant 161:efd949e8d536 23 void DeviceISACSSetPotentiometers(void);
Diletant 161:efd949e8d536 24
Diletant 161:efd949e8d536 25 #endif /* __DEVICE_ISACS_POTENTIOMETERS_H__ */