diff options
| author | Shlomo Hecht <shlomo@twine-s.com> | 2018-09-06 13:21:46 +0300 |
|---|---|---|
| committer | Shlomo Hecht <shlomo@twine-s.com> | 2018-09-06 13:21:46 +0300 |
| commit | d8a98dd350bc022faef49bbd1eb8db0e5060409f (patch) | |
| tree | cd5e8356b3e480026836967e0ac6aa05d543208b /Software/Embedded_SW | |
| parent | f6d9dfef6f39577589d2e637bba1e47ea484cc32 (diff) | |
| download | Tango-d8a98dd350bc022faef49bbd1eb8db0e5060409f.tar.gz Tango-d8a98dd350bc022faef49bbd1eb8db0e5060409f.zip | |
fan tacho interface
Diffstat (limited to 'Software/Embedded_SW')
| -rw-r--r-- | Software/Embedded_SW/Embedded/Modules/Control/MillisecTask.c | 2 | ||||
| -rw-r--r-- | Software/Embedded_SW/Embedded/Modules/Control/MillisecTask.h | 2 |
2 files changed, 3 insertions, 1 deletions
diff --git a/Software/Embedded_SW/Embedded/Modules/Control/MillisecTask.c b/Software/Embedded_SW/Embedded/Modules/Control/MillisecTask.c index 122afaea8..177a3678f 100644 --- a/Software/Embedded_SW/Embedded/Modules/Control/MillisecTask.c +++ b/Software/Embedded_SW/Embedded/Modules/Control/MillisecTask.c @@ -466,7 +466,7 @@ float getSensorSpeedData(void) return Speed_Data; } -float getDrawerFansStatus(void) +uint32_t getDrawerFansStatus(void) { return DrawerFansStatus; } diff --git a/Software/Embedded_SW/Embedded/Modules/Control/MillisecTask.h b/Software/Embedded_SW/Embedded/Modules/Control/MillisecTask.h index f2f7e7e77..1c1989c1e 100644 --- a/Software/Embedded_SW/Embedded/Modules/Control/MillisecTask.h +++ b/Software/Embedded_SW/Embedded/Modules/Control/MillisecTask.h @@ -28,6 +28,8 @@ uint32_t getTemperatureSensorData(int SensorId); uint32_t getADCData(int DeviceId); */ float getSensorSpeedData(void); +uint32_t getDrawerFansStatus(void); + void MillisecInit(void); void MillisecStop(void); void MillisecStart(void); |
