27 lines
449 B
C
27 lines
449 B
C
|
/* USER CODE END Header */
|
||
|
/* Define to prevent recursive inclusion -------------------------------------*/
|
||
|
#ifndef __ADC_2_TEMP_H__
|
||
|
#define __ADC_2_TEMP_H__
|
||
|
|
||
|
#ifdef __cplusplus
|
||
|
extern "C" {
|
||
|
#endif
|
||
|
|
||
|
/* Includes ------------------------------------------------------------------*/
|
||
|
#include "main.h"
|
||
|
|
||
|
extern uint16_t adc_value_of_temp;
|
||
|
extern float g_temp_value;
|
||
|
|
||
|
void adc_2_temp(void);
|
||
|
|
||
|
|
||
|
|
||
|
|
||
|
|
||
|
#ifdef __cplusplus
|
||
|
}
|
||
|
#endif
|
||
|
#endif /* __ADC_2_TEMP_H__ */
|
||
|
|