SMPS2/src/adc.h

23 lines
246 B
C
Raw Normal View History

2015-02-21 15:58:07 +01:00
/*
* adc.h
*
* Created on: 03.10.2014
* Author: wn
*/
#ifndef ADC_H_
#define ADC_H_
#include <stdint.h>
const uint32_t ADC_TIME_OUT = 100000;
2015-02-21 23:47:37 +01:00
const uint16_t ADC_MAX = 511;
2015-02-21 15:58:07 +01:00
void adcInit();
uint16_t adcGet();
#endif /* ADC_H_ */