You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 

10 line
313 B

  1. #ifndef _ADC_INTERRUPT_H_
  2. #define _ADC_INTERRUPT_H_
  3. /*****************宏定义*************************/
  4. #define g_Adc12_12bitFullRange 4096U //最大测量范围4096
  5. /*****************函数声明*************************/
  6. void ADC12_InterrputInit(); //ADC初始化
  7. uint32_t adc_ReturnValue(); //获取ADC返回值
  8. #endif