123

Dependencies:   mbed

Fork of LG by igor Apu

DeviceISACSPotentiometers.h

Committer:
Kovalev_D
Date:
2016-10-19
Revision:
197:7a05523bf588
Parent:
167:bedc0a9d559a

File content as of revision 197:7a05523bf588:

#ifndef __DEVICE_ISACS_POTENTIOMETERS_H__
#define __DEVICE_ISACS_POTENTIOMETERS_H__

typedef struct _DeviceISACSPotentiometersSettings {
  uint32_t a;
  uint32_t b;
} DeviceISACSPotentiometersSettings;

typedef struct _DeviceISACSPotentiometersState {
  uint32_t a;
  uint32_t b;
} DeviceISACSPotentiometersState;

typedef struct _DeviceISACSPotentiometers {
  DeviceISACSPotentiometersSettings settings;
  DeviceISACSPotentiometersState state;
} DeviceISACSPotentiometers;

void InitISACSPotentiometersDefaultSettings(void);
void InitISACSPotentiometersState(void);
void DeviceStartISACSPotentiometers(void);

void DeviceISACSSetPotentiometers(void);

#endif  /* __DEVICE_ISACS_POTENTIOMETERS_H__ */