1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16
#ifndef TEMPERATURE_INCLUDED #define TEMPERATURE_INCLUDED #ifdef __cplusplus extern "C" { #endif int get_resistance(int vt, int ra); int get_temperature(int res); int get_temp_subrange(short a, short b, int res); #ifdef __cplusplus } #endif #endif /* TEMPERATURE_INCLUDED */