ntc.h 181 B

123456789101112131415161718192021
  1. #ifndef __NTC_H
  2. #define __NTC_H
  3. #include "stm32f4xx.h"
  4. #include "math.h"
  5. extern u32 NTC_ADC_VALUE_SUM;
  6. u16 Data_Get(void);
  7. float Get_Temperature(u16 ADC_VALUE);
  8. #endif