// ----------------------------------------------------------------------------- /// @file DAConverters.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 // ----------------------------------------------------------------------------- /// @defgroup {group_name} {group_description} /// Description /// @file DAConverters.h /// @ingroup {group_name} #ifndef DACONVERTERS_H_ #define DACONVERTERS_H_ // ----------------------------------------------------------------------------- // Include files // ----------------------------------------------------------------------------- #include "stm32f10x.h" #include "DAConverter.h" // ----------------------------------------------------------------------------- // Constant and macro definitions // ----------------------------------------------------------------------------- // ----------------------------------------------------------------------------- // Type definitions. // ----------------------------------------------------------------------------- extern struct DAConverter* dacRow1; extern struct DAConverter* dacRow2; extern struct DAConverter* dacRow3; // ----------------------------------------------------------------------------- // Function declarations // ----------------------------------------------------------------------------- /** ---------------------------------------------------------------------------- * DAConverters_construct * Constructor for DAConverters * * @return ErrorStatus SUCCESS if constructor was successful * ERROR otherwise * * @todo * ----------------------------------------------------------------------------- */ extern ErrorStatus DAConverters_construct(void); /** ---------------------------------------------------------------------------- * DAConverters_destruct * Destructor for DAConverters * * @return void * * @todo * ----------------------------------------------------------------------------- */ extern void DAConverters_destruct(void); #endif /* DACONVERTERS_H_ */