9 lines
132 B
C
9 lines
132 B
C
#ifndef ADC_H_
|
|
#define ADC_H_
|
|
|
|
extern volatile uint16_t adc_value;
|
|
|
|
void ADC_init(void);
|
|
void ADC_deinit(void);
|
|
|
|
#endif /* ADC_H_ */ |