13 lines
165 B
C
13 lines
165 B
C
#ifndef _ADC_H_
|
|
#define _ADC_H_
|
|
|
|
#include "buffer.h"
|
|
|
|
extern volatile buffer_t adc_buf[4];
|
|
extern volatile float adc_avrg[4];
|
|
|
|
void initADC(void);
|
|
|
|
#endif//_ADC_H_
|
|
|