You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
#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_
|
|
|