/* ************************************************************* */ /* INCLUDE FILES */ #include #include #include #include #include "calib.h" /* ************************************************************* */ /* PRIVATE FUNCTIONS */ /* ************************************************************* */ int main(int argc, char *argv[]) { /* Test the cubic spline interpolation */ calib_test_cubic_spline_interp(); /* Test the polynomial fit interpolation */ //calib_test_poly_fit_interp(); /* Test the Steinhart-Hart calculations */ //calib_test_steinhart_hart(); /* Message */ printf("\nDone\n"); /* Done */ return 0; }