Subversion Repositories Code-Repo

Rev

Go to most recent revision | Details | Last modification | View Log | RSS feed

Rev Author Line No. Line
284 Kevin 1
#ifndef ADC_H
2
#define	ADC_H
3
 
4
void ADC_Init(void);
5
 
6
uint16_t ADC_Read(uint8_t channel);
7
 
8
#endif	/* ADC_H */
9