blackbox/driver/adc.h

Wed, 14 Dec 2011 20:43:08 +0100

author
Malte Bayer <mbayer@neo-soft.org>
date
Wed, 14 Dec 2011 20:43:08 +0100
changeset 80
393b63b8c95f
parent 0
9b7de464f0ea
permissions
-rw-r--r--

added usb programmer option to blackbox makefile

#ifndef _ADC_H__
#define _ADC_H__
#include <stdint.h>

// Functions to access the ADC

// We have two implementations:
// MCP3204.c and internal_ADC.c


// get a sample from ADC chip.
uint16_t getADC(int channel);

// initialize the ADC chip
void initADC(void);

// select reference
// returns 1 on success
uint8_t setAREF(char* name);

#ifdef EXT_AREF
    // get current reference voltage
    float getAREF(void);
#endif

// get smoothed adc readings
uint16_t getADC_smooth(uint8_t channel, uint8_t samples);


#endif // _ADC_H__

mercurial