ntc_sensor.h 1.3 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152
  1. /**
  2. * @file ntc_sensor.h
  3. * @author Zhou xiong(zhouxiong9@midea.com)
  4. * @brief
  5. * @version 0.1
  6. * @date 2023-03-09
  7. *
  8. * @copyright Copyright (c) 2021
  9. *
  10. */
  11. /************************************************************************
  12. Beginning of File, do not put anything above here except notes
  13. Compiler Directives:
  14. *************************************************************************/
  15. #ifndef NTCSENSOR_H
  16. #define NTCSENSOR_H
  17. #include "typedefine.h"
  18. /****************************************
  19. *
  20. * Definitions & Macros
  21. *
  22. ****************************************/
  23. /***************************************
  24. *
  25. * Type Definations
  26. *
  27. ***************************************/
  28. /*****************************************
  29. *
  30. * Exported variable
  31. *
  32. ****************************************/
  33. /***************************************
  34. *
  35. * Function Definations
  36. *
  37. ***************************************/
  38. extern SWORD GetPCBTemp(UWORD ADC_Result);
  39. extern SWORD GetTorqueTemp(UWORD ADC_Result);
  40. /************************************************************************/
  41. #endif
  42. /************************************************************************
  43. End of this File (EOF):
  44. Do not put anything after this part!
  45. *************************************************************************/