Compare commits
2 Commits
99ae5f9bc1
...
5fcb5305f8
Author | SHA1 | Date | |
---|---|---|---|
5fcb5305f8 | |||
d6d8973800 |
@ -22,6 +22,6 @@
|
|||||||
#ifndef __SETTINGS_SETTINGS_H__
|
#ifndef __SETTINGS_SETTINGS_H__
|
||||||
#define __SETTINGS_SETTINGS_H__
|
#define __SETTINGS_SETTINGS_H__
|
||||||
|
|
||||||
settings_save_calibration();
|
int settings_save_calibration();
|
||||||
|
|
||||||
#endif /* __SETTINGS_SETTINGS_H__ */
|
#endif /* __SETTINGS_SETTINGS_H__ */
|
||||||
|
@ -229,7 +229,7 @@ int main()
|
|||||||
/* Activate loundspeaker permanently */
|
/* Activate loundspeaker permanently */
|
||||||
loudspeaker_set(1);
|
loudspeaker_set(1);
|
||||||
} else if (pid_controller_active) {
|
} 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);
|
oven_driver_set_power(pid_controller_output < 0 ? 0U : (uint8_t)pid_controller_output);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -19,3 +19,8 @@
|
|||||||
*/
|
*/
|
||||||
|
|
||||||
#include <reflow-controller/settings/settings.h>
|
#include <reflow-controller/settings/settings.h>
|
||||||
|
|
||||||
|
int settings_save_calibration()
|
||||||
|
{
|
||||||
|
return 0;
|
||||||
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user