Compare commits

..

No commits in common. "5fcb5305f82cd88b0330e9f737bb6cb381f5b8d5" and "99ae5f9bc1a5059d2d86f712b5e8a05f24c7444e" have entirely different histories.

3 changed files with 2 additions and 7 deletions

View File

@ -22,6 +22,6 @@
#ifndef __SETTINGS_SETTINGS_H__
#define __SETTINGS_SETTINGS_H__
int settings_save_calibration();
settings_save_calibration();
#endif /* __SETTINGS_SETTINGS_H__ */

View File

@ -229,7 +229,7 @@ int main()
/* Activate loundspeaker permanently */
loudspeaker_set(1);
} else if (pid_controller_active) {
/* In case temperature measurement is okay and controlelr is working, write output power */
/* In case temperature measuremnt is okay and controlelr is working, write output power */
oven_driver_set_power(pid_controller_output < 0 ? 0U : (uint8_t)pid_controller_output);
}

View File

@ -19,8 +19,3 @@
*/
#include <reflow-controller/settings/settings.h>
int settings_save_calibration()
{
return 0;
}