repo.or.cz
/
avr_work.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
add unified compile target
[avr_work.git]
/
lline
/
adc.h
blob
a50e4536572932823fad59066aaad5f5b3d7e3ee
1
#ifndef _ADC_H_
2
#define _ADC_H_
3
4
#include <stdint.h>
5
#include <stdbool.h>
6
7
#include
"adc_conf.h"
8
9
void
adc_init
(
void
);
10
uint16_t
adc_get_i
(
uint8_t
sensor_i
);
11
12
extern volatile
uint16_t
adc_values
[
ADC_CHANNEL_CT
];
13
extern volatile
bool
adc_new_data
;
14
15
#endif