Files
hsb/S - Software/0 - HSB MRTS Kathode-MCP/3 - Implementation/0 - Code/hsb-mrts/inc/ADConverters.h
dvl 15ab232e82 Doxygen update
git-svn-id: https://svn.vbchaos.nl/svn/hsb/trunk@427 05563f52-14a8-4384-a975-3d1654cca0fa
2018-01-15 11:04:24 +00:00

84 lines
2.5 KiB
C

// -----------------------------------------------------------------------------
/// @file ADConverters.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
// -----------------------------------------------------------------------------
/**
* %ADConverters implementation
* \defgroup ADConverters Package ADConverters
* \ingroup hsb-mrts
* @{
*/
#ifndef ADCONVERTERS_H_
#define ADCONVERTERS_H_
// -----------------------------------------------------------------------------
// Include files
// -----------------------------------------------------------------------------
#include "stm32f10x.h"
#include "ADConverter.h"
// -----------------------------------------------------------------------------
// Constant and macro definitions
// -----------------------------------------------------------------------------
// -----------------------------------------------------------------------------
// Type definitions.
// -----------------------------------------------------------------------------
extern struct ADConverter* adcRow1;
extern struct ADConverter* adcRow2;
extern struct ADConverter* adcRow3;
// -----------------------------------------------------------------------------
// Function declarations
// -----------------------------------------------------------------------------
/** ----------------------------------------------------------------------------
* ADConverters_construct
* Constructor for ADConverters
*
* @return ErrorStatus SUCCESS if constructor was successful
* ERROR otherwise
*
* @todo
* -----------------------------------------------------------------------------
*/
extern ErrorStatus ADConverters_construct(void);
/** ----------------------------------------------------------------------------
* ADConverters_destruct
* Destructor for ADConverters
*
* @return void
*
* @todo
* -----------------------------------------------------------------------------
*/
extern void ADConverters_destruct(void);
#endif /* ADCONVERTERS_H_ */
/** @} */