Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Temperature singleton #3643

Merged
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions Marlin/Conditionals.h
Original file line number Diff line number Diff line change
Expand Up @@ -675,6 +675,8 @@

#define HAS_TEMP_HOTEND (HAS_TEMP_0 || ENABLED(HEATER_0_USES_MAX6675))

#define HAS_THERMALLY_PROTECTED_BED (HAS_TEMP_BED && HAS_HEATER_BED && ENABLED(THERMAL_PROTECTION_BED))

/**
* Helper Macros for heaters and extruder fan
*/
Expand Down
4 changes: 0 additions & 4 deletions Marlin/Marlin.h
Original file line number Diff line number Diff line change
Expand Up @@ -340,10 +340,6 @@ extern int16_t code_value_short();
extern uint8_t host_keepalive_interval;
#endif

#if ENABLED(PREVENT_DANGEROUS_EXTRUDE)
extern float extrude_min_temp;
#endif

#if FAN_COUNT > 0
extern int fanSpeeds[FAN_COUNT];
#endif
Expand Down
Loading