git-svn-id: https://svn.vbchaos.nl/svn/hsb/trunk@427 05563f52-14a8-4384-a975-3d1654cca0fa
128 lines
3.7 KiB
C
128 lines
3.7 KiB
C
// -----------------------------------------------------------------------------
|
|
/// @file CalibrationParameters.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
|
|
// -----------------------------------------------------------------------------
|
|
|
|
/**
|
|
* %CalibrationParameters implementation
|
|
* \defgroup CalibrationParameters Package CalibrationParameters
|
|
* \ingroup hsb-mrts
|
|
* @{
|
|
*/
|
|
|
|
#ifndef CALIBRATIONPARAMETERS_H_
|
|
#define CALIBRATIONPARAMETERS_H_
|
|
|
|
|
|
// -----------------------------------------------------------------------------
|
|
// Include files
|
|
// -----------------------------------------------------------------------------
|
|
|
|
#include "CalibrationParameters.h"
|
|
#include "MemoryDevice.h"
|
|
|
|
// -----------------------------------------------------------------------------
|
|
// Constant and macro definitions
|
|
// -----------------------------------------------------------------------------
|
|
|
|
|
|
|
|
// -----------------------------------------------------------------------------
|
|
// Type definitions.
|
|
// -----------------------------------------------------------------------------
|
|
|
|
|
|
|
|
// -----------------------------------------------------------------------------
|
|
// Function declarations
|
|
// -----------------------------------------------------------------------------
|
|
|
|
|
|
/** ----------------------------------------------------------------------------
|
|
* CalibrationParameters_construct
|
|
* Description of function
|
|
*
|
|
* @param para1_name
|
|
* @param para2_name
|
|
* @return return_type
|
|
*
|
|
* @todo
|
|
* -----------------------------------------------------------------------------
|
|
*/
|
|
extern ErrorStatus CalibrationParameters_construct(struct MemoryDevice* memoryDevice);
|
|
|
|
|
|
/** ----------------------------------------------------------------------------
|
|
* CalibrationParameters_destruct
|
|
* Description of function
|
|
*
|
|
* @param
|
|
* @param
|
|
* @return void
|
|
*
|
|
* @todo
|
|
* -----------------------------------------------------------------------------
|
|
*/
|
|
extern void CalibrationParameters_destruct(void);
|
|
|
|
|
|
/** ----------------------------------------------------------------------------
|
|
* CalibrationParameters_getCalibrationSetpoints
|
|
* Description of function
|
|
*
|
|
* @param
|
|
* @param
|
|
* @return struct CalibrationSetpoints*
|
|
*
|
|
* @todo
|
|
* -----------------------------------------------------------------------------
|
|
*/
|
|
extern struct CalibrationSetpoints* CalibrationParameters_getCalibrationSetpoints(void);
|
|
|
|
|
|
/** ----------------------------------------------------------------------------
|
|
* CalibrationParameters_setCalibrationSetpoints
|
|
* Description of function
|
|
*
|
|
* @param setpoints
|
|
*
|
|
* @return ErrorStatus
|
|
*
|
|
* @todo
|
|
* -----------------------------------------------------------------------------
|
|
*/
|
|
extern ErrorStatus CalibrationParameters_setCalibrationSetpoints(struct CalibrationSetpoints* setpoints);
|
|
|
|
|
|
/** ----------------------------------------------------------------------------
|
|
* CalibrationParameters_saveParameters
|
|
* Description of function
|
|
*
|
|
* @param
|
|
* @param
|
|
* @return void
|
|
*
|
|
* @todo
|
|
* -----------------------------------------------------------------------------
|
|
*/
|
|
extern void CalibrationParameters_saveParameters(void);
|
|
|
|
|
|
#endif /* CALIBRATIONPARAMETERS_H_ */
|
|
|
|
/** @} */
|