// ----------------------------------------------------------------------------- /// @file CalibrationSetpoint.h /// @brief File description // ----------------------------------------------------------------------------- // Micro-Key bv // Industrieweg 28, 9804 TG Noordhorn // Postbus 92, 9800 AB Zuidhorn // The Netherlands // Tel: +31 594 503020 // Fax: +31 594 505825 // Email: support@microkey.nl // Web: www.microkey.nl // ----------------------------------------------------------------------------- /// $Revision$ /// $Author$ /// $Date$ // (c) 2015 Micro-Key bv // ----------------------------------------------------------------------------- /** * %CalibrationSetpoint implementation * \defgroup CalibrationSetpoint Package CalibrationSetpoint * \ingroup hsb-mrts * @{ */ #ifndef CALIBRATIONSETPOINT_H_ #define CALIBRATIONSETPOINT_H_ // ----------------------------------------------------------------------------- // Include files // ----------------------------------------------------------------------------- // ----------------------------------------------------------------------------- // Constant and macro definitions // ----------------------------------------------------------------------------- // ----------------------------------------------------------------------------- // Type definitions. // ----------------------------------------------------------------------------- struct CalibrationSetpoint { int low; // Low calibration setpoint int high; // High calibration setpoint }; // ----------------------------------------------------------------------------- // Function declarations // ----------------------------------------------------------------------------- /** ---------------------------------------------------------------------------- * CalibrationSetpoint_LowSetpoint * Description of function * * @param self * @param lowSetpoint * @return void * * @todo * ----------------------------------------------------------------------------- */ extern void CalibrationSetpoint_setLowSetpoint(struct CalibrationSetpoint* self, int lowSetpoint); /** ---------------------------------------------------------------------------- * CalibrationSetpoints_setHighSetpoint * Description of function * * @param self * @param highSetpoint * @return void * * @todo * ----------------------------------------------------------------------------- */ extern void CalibrationSetpoint_setHighSetpoint(struct CalibrationSetpoint* self, int highSetpoint); #endif /* CALIBRATIONSETPOINT_H_ */ /** @} */