common: list: an interface to a static list which can have elements added and removed...
[avr_work.git] / lline / adc.h
bloba50e4536572932823fad59066aaad5f5b3d7e3ee
1 #ifndef _ADC_H_
2 #define _ADC_H_
4 #include <stdint.h>
5 #include <stdbool.h>
7 #include "adc_conf.h"
9 void adc_init(void);
10 uint16_t adc_get_i(uint8_t sensor_i);
12 extern volatile uint16_t adc_values[ADC_CHANNEL_CT];
13 extern volatile bool adc_new_data;
15 #endif