11 lines
122 B
C
11 lines
122 B
C
|
|
//ADC <20><>
|
|||
|
|
|
|||
|
|
#ifndef __ADC_H
|
|||
|
|
#define __ADC_H
|
|||
|
|
|
|||
|
|
void ADC_Init(void);
|
|||
|
|
float ADC_Get_PC0(void);
|
|||
|
|
float ADC_Get_PC1(void);
|
|||
|
|
|
|||
|
|
#endif
|