21 lines
206 B
C
21 lines
206 B
C
|
/*
|
||
|
* adc.h
|
||
|
*
|
||
|
* Created on: 03.10.2014
|
||
|
* Author: wn
|
||
|
*/
|
||
|
|
||
|
#ifndef MEASURE_H_
|
||
|
#define MEASURE_H_
|
||
|
|
||
|
#include <stdint.h>
|
||
|
|
||
|
|
||
|
|
||
|
|
||
|
void measureInit();
|
||
|
void measureStartConversion();
|
||
|
|
||
|
|
||
|
#endif /* MEASURE_H_ */
|