Major updates:
- added DAConverter(s) - added ADConverter(s) - Fixed some display issues - Made repair process and signalProfileGenerator calculate with voltages (signed) instead of DAC/ADC values - Fixed several bugs in task handlings - Put display data mirror into dedicated file displaycontent git-svn-id: https://svn.vbchaos.nl/svn/hsb/trunk@261 05563f52-14a8-4384-a975-3d1654cca0fa
This commit is contained in:
@@ -31,22 +31,71 @@
|
||||
// Include files
|
||||
// -----------------------------------------------------------------------------
|
||||
|
||||
#include <stdbool.h>
|
||||
|
||||
#include "stm32f10x.h"
|
||||
// -----------------------------------------------------------------------------
|
||||
// Constant and macro definitions
|
||||
// -----------------------------------------------------------------------------
|
||||
|
||||
struct ADCDevice;
|
||||
|
||||
typedef uint32_t (*ADCReadFunction)(const struct ADCDevice* self);
|
||||
|
||||
|
||||
struct ADCDevice
|
||||
{
|
||||
ADCReadFunction _read;
|
||||
bool initialized;
|
||||
unsigned int resolutionInBits;
|
||||
};
|
||||
|
||||
// -----------------------------------------------------------------------------
|
||||
// Type definitions.
|
||||
// Function declarations
|
||||
// -----------------------------------------------------------------------------
|
||||
|
||||
|
||||
/** ----------------------------------------------------------------------------
|
||||
* ADCDevice_construct
|
||||
* Constructor for ADC device
|
||||
*
|
||||
* @param self ADC object
|
||||
* @param read Pointer to read function
|
||||
*
|
||||
* @return ErrorStatus SUCCESS if construction was successful
|
||||
* ERROR otherwise
|
||||
*
|
||||
* @todo
|
||||
* -----------------------------------------------------------------------------
|
||||
*/
|
||||
extern ErrorStatus ADCDevice_construct(struct ADCDevice* self, ADCReadFunction read, unsigned int resolutionInBits);
|
||||
|
||||
// -----------------------------------------------------------------------------
|
||||
// Function declarations
|
||||
// -----------------------------------------------------------------------------
|
||||
|
||||
/** ----------------------------------------------------------------------------
|
||||
* ADCDevice_destruct
|
||||
* Destructor for ADC device
|
||||
*
|
||||
* @param self ADC object
|
||||
*
|
||||
* @return void
|
||||
*
|
||||
* @todo
|
||||
* -----------------------------------------------------------------------------
|
||||
*/
|
||||
extern void ADCDevice_destruct(struct ADCDevice* self);
|
||||
|
||||
/** ----------------------------------------------------------------------------
|
||||
* ADCDevice_read
|
||||
* Reads a value from the ADC device input
|
||||
*
|
||||
* @param self ADC object
|
||||
* @param voltage value in volt (signed) to write to output
|
||||
*
|
||||
* @return ErrorStatus
|
||||
*
|
||||
* @todo
|
||||
* -----------------------------------------------------------------------------
|
||||
*/
|
||||
extern uint32_t ADCDevice_read(const struct ADCDevice* self);
|
||||
|
||||
#endif /* INC_ADCDEVICE_H_ */
|
||||
|
||||
Reference in New Issue
Block a user