soft_adc.h 201 B

12345678910
  1. #ifndef _SOFT_ADC_H
  2. #define _SOFT_ADC_H
  3. #include "stdint.h"
  4. float ADC_gather(void);
  5. void adc_gather_hz(void);
  6. void buf_sort(float *arr, uint32_t length);
  7. uint16_t ADC_read_temptrue(void);
  8. #endif