adc.h 125 B

123456789101112
  1. #ifndef __ADC_H
  2. #define __ADC_H
  3. #include "stm32f10x.h"
  4. void ADC1_Init(void);
  5. u16 Get_Adc(u8 ch) ;
  6. #endif /* __ADC_H */