Tweaks to temperature code

This commit is contained in:
Scott Lahteine
2017-06-15 15:14:08 -05:00
parent d9da126776
commit 7769a22064
3 changed files with 22 additions and 22 deletions

View File

@ -535,15 +535,15 @@ class Temperature {
static void checkExtruderAutoFans();
static float get_pid_output(int e);
static float get_pid_output(const int8_t e);
#if ENABLED(PIDTEMPBED)
static float get_pid_output_bed();
#endif
static void _temp_error(int e, const char* serial_msg, const char* lcd_msg);
static void min_temp_error(int8_t e);
static void max_temp_error(int8_t e);
static void _temp_error(const int8_t e, const char * const serial_msg, const char * const lcd_msg);
static void min_temp_error(const int8_t e);
static void max_temp_error(const int8_t e);
#if ENABLED(THERMAL_PROTECTION_HOTENDS) || HAS_THERMALLY_PROTECTED_BED