// ----------------------------------------------------------------------------- /// @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_ */ /** @} */