hal_adc.h 197 B

1234567891011
  1. #ifndef __HAL_ADC_H__
  2. #define __HAL_ADC_H__
  3. #include "sys.h"
  4. void HAL_AdcInit(void);
  5. uint16_t HAL_AdcGetVal(void);
  6. void HAL_AdcGetValTimerInit(void);
  7. #endif //__HAL_ADC_H__