Compare commits

...

2 Commits

Author SHA1 Message Date
5fcb5305f8 Implement dummy for calibration save function 2020-05-09 20:51:30 +02:00
d6d8973800 Fix typo in comment 2020-05-09 20:51:06 +02:00
3 changed files with 7 additions and 2 deletions

View File

@ -22,6 +22,6 @@
#ifndef __SETTINGS_SETTINGS_H__
#define __SETTINGS_SETTINGS_H__
settings_save_calibration();
int 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 measuremnt is okay and controlelr is working, write output power */
/* In case temperature measurement 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,3 +19,8 @@
*/
#include <reflow-controller/settings/settings.h>
int settings_save_calibration()
{
return 0;
}