f1a75267fb
+Fix filter
13 lines
154 B
C
13 lines
154 B
C
#ifndef _ADC_H
|
|
#define _ADC_H
|
|
|
|
#include <stdint.h>
|
|
|
|
#define ADCFS DFREQ
|
|
#define ADCOVERSAMP 4
|
|
|
|
void InitADC();
|
|
void ADCCallback( int16_t value );
|
|
|
|
#endif
|