hal_adc.h 304 B

1234567891011
  1. #ifndef __HAL_ADC_H__
  2. #define __HAL_ADC_H__
  3. #include "sys.h"
  4. void HAL_AdcInit(void); //ADCͨ����ʼ��
  5. uint16_t HAL_AdcGetVal(void); //�õ�ij��ͨ����������������ƽ��ֵ
  6. void HAL_AdcGetValTimerInit(void);
  7. #endif //__HAL_ADC_H__