tao_z
2021-06-30 945ba42f7550d5a203e43d82b43ed82dc981d9e9
1
2
3
4
5
6
7
#ifndef ADC_H
#define ADC_H
#include "stdint.h"
extern void ADC_Init(void);
extern uint16_t ADC_GetChannleValue(uint8_t ch);
 
#endif