12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152 |
- /**
- * @file ntc_sensor.h
- * @author Zhou xiong(zhouxiong9@midea.com)
- * @brief
- * @version 0.1
- * @date 2023-03-09
- *
- * @copyright Copyright (c) 2021
- *
- */
- /************************************************************************
- Beginning of File, do not put anything above here except notes
- Compiler Directives:
- *************************************************************************/
- #ifndef NTCSENSOR_H
- #define NTCSENSOR_H
-
- #include "typedefine.h"
- /****************************************
- *
- * Definitions & Macros
- *
- ****************************************/
- /***************************************
- *
- * Type Definations
- *
- ***************************************/
- /*****************************************
- *
- * Exported variable
- *
- ****************************************/
- /***************************************
- *
- * Function Definations
- *
- ***************************************/
- extern SWORD GetPCBTemp(UWORD ADC_Result);
- extern SWORD GetTorqueTemp(UWORD ADC_Result);
- /************************************************************************/
- #endif
- /************************************************************************
- End of this File (EOF):
- Do not put anything after this part!
- *************************************************************************/
|