2015-07-21 08:22:16 +02:00
|
|
|
#ifndef _ADC_H
|
|
|
|
#define _ADC_H
|
|
|
|
|
|
|
|
#include <stdint.h>
|
2015-07-29 07:56:18 +02:00
|
|
|
#include "ccconfig.h"
|
2015-07-21 08:22:16 +02:00
|
|
|
#define ADCFS DFREQ
|
2015-07-22 15:12:21 +02:00
|
|
|
#define ADCOVERSAMP 4
|
2015-07-21 08:22:16 +02:00
|
|
|
|
|
|
|
void InitADC();
|
|
|
|
void ADCCallback( int16_t value );
|
|
|
|
|
|
|
|
#endif
|