git-svn-id: https://svn.vbchaos.nl/svn/hsb/trunk@426 05563f52-14a8-4384-a975-3d1654cca0fa
89 lines
2.7 KiB
C
89 lines
2.7 KiB
C
// -----------------------------------------------------------------------------
|
|
/// @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_ */
|
|
|
|
/** @} */
|