11 lines
165 B
C
11 lines
165 B
C
#ifndef _TEMP_ADC_H_
|
|
#define _TEMP_ADC_H_
|
|
|
|
#include <stdint.h>
|
|
|
|
void temperature_adc_init(void);
|
|
|
|
int32_t temperature_adc_get_temp(void);
|
|
|
|
#endif /* _TEMP_ADC_H_ */
|