mirror of
https://github.com/MarlinFirmware/Marlin.git
synced 2025-02-19 23:54:19 +00:00
[1.1.x] Add new capability to report if Thermal Protection is enabled (#10465)
This commit is contained in:
parent
dcb8af0518
commit
4cc2bc1343
1 changed files with 7 additions and 0 deletions
|
@ -8783,6 +8783,13 @@ inline void gcode_M115() {
|
||||||
#endif
|
#endif
|
||||||
);
|
);
|
||||||
|
|
||||||
|
// THERMAL_PROTECTION
|
||||||
|
cap_line(PSTR("THERMAL_PROTECTION")
|
||||||
|
#if ENABLED(THERMAL_PROTECTION_HOTENDS) && ENABLED(THERMAL_PROTECTION_BED)
|
||||||
|
, true
|
||||||
|
#endif
|
||||||
|
);
|
||||||
|
|
||||||
#endif // EXTENDED_CAPABILITIES_REPORT
|
#endif // EXTENDED_CAPABILITIES_REPORT
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue