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 LG by
DeviceISACSPotentiometers.h@214:4c70e452c491, 2017-08-16 (annotated)
- Committer:
- Kovalev_D
- Date:
- Wed Aug 16 09:00:25 2017 +0000
- Revision:
- 214:4c70e452c491
- Parent:
- 167:bedc0a9d559a
fdxcz
Who changed what in which revision?
| User | Revision | Line number | New 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__ */ |
