Jamie Satchell
/
JSatchell_SOFT253ReferredCoursework
Finished project.
Fork of ReferredCoursework2016 by
Diff: Components/Interfaces/TempSensor.h
- Revision:
- 46:badcff0675e8
- Parent:
- 43:2544d064d528
--- a/Components/Interfaces/TempSensor.h Mon Jun 08 15:36:36 2015 +0200 +++ b/Components/Interfaces/TempSensor.h Mon Jun 08 17:22:35 2015 +0200 @@ -41,41 +41,15 @@ #define __TEMP_SENSOR_CLASS_H /* Includes ------------------------------------------------------------------*/ -#include <stdint.h> +#include <GenericSensor.h> /* Classes ------------------------------------------------------------------*/ /** An abstract class for Temperature sensors */ -class TempSensor +class TempSensor : public GenericSensor { public: /** - * @brief Initialization of temperature sensor - * @param[out] ptr Pointer to device specific initalization structure - * @return 0 in case of success, an error code otherwise - */ - virtual int Init(void *ptr) = 0; - - /** - * @brief Enter sensor shutdown mode - * @return 0 in case of success, an error code otherwise - */ - virtual int PowerOff(void) = 0; - - /** - * @brief Get ID of temperature sensor - * @param[out] id Pointer to where to store the ID to - * @return 0 in case of success, an error code otherwise - */ - virtual int ReadID(uint8_t *id) = 0; - - /** - * @brief Reset sensor - * @return 0 in case of success, an error code otherwise - */ - virtual int Reset(void) = 0; - - /** * @brief Get current temperature in degrees Celsius [°C] * @param[out] pfData Pointer to where to store temperature to * @return 0 in case of success, an error code otherwise @@ -97,18 +71,6 @@ *pfData = ((celsius * 1.8f) + 32.0f); return 0; } - - virtual void ConfigIT(uint16_t) = 0; - virtual void EnableIT(uint8_t) = 0; - virtual void DisableIT(uint8_t) = 0; - virtual uint8_t ITStatus(uint16_t, uint16_t) = 0; - virtual void ClearIT(uint16_t, uint16_t) = 0; - - /** - * @brief Attach a function to be called when an interrupt occurs - * @param[in] fptr A pointer to a void function, or 0 to set as none - */ - virtual void AttachIT(void (*fptr)(void)) = 0; }; #endif /* __TEMP_SENSOR_CLASS_H */