16 lines
328 B
C
16 lines
328 B
C
/**
|
|
* @file ntc_3950.h
|
|
* @author xxx
|
|
* @date 2023-08-30 14:05:55
|
|
* @brief 头文件 ntc_3950.h
|
|
* @copyright Copyright (c) 2023 by xxx, All Rights Reserved.
|
|
*/
|
|
|
|
#ifndef __NTC_B3950_H__
|
|
#define __NTC_B3950_H__
|
|
#include "main.h"
|
|
|
|
extern float32_u ntc_get_temp(uint16_t adc); ///< 获取温度值
|
|
|
|
#endif ///< __NTC_B3950_H__
|