mirror of
https://github.com/MarlinFirmware/Marlin.git
synced 2026-01-15 20:35:34 -07:00
Remove SENSOR probe which has neither min nor max.
This commit is contained in:
parent
7323ff21bd
commit
ff491b9e6b
1 changed files with 3 additions and 3 deletions
|
|
@ -248,6 +248,9 @@ void GcodeSuite::M115() {
|
|||
// SINGLE_NOZZLE
|
||||
cap_line(F("SINGLE_NOZZLE"), ENABLED(SINGLENOZZLE));
|
||||
|
||||
// DIRECT_DRIVE
|
||||
cap_line(F("DIRECT_DRIVE"), ENABLED(ADVANCED_PAUSE_FEATURE) && TERN(FILAMENT_CHANGE_UNLOAD_LENGTH < 100);
|
||||
|
||||
// HEATED_BED
|
||||
cap_line(F("HEATED_BED"), ENABLED(HAS_HEATED_BED));
|
||||
|
||||
|
|
@ -339,9 +342,6 @@ void GcodeSuite::M115() {
|
|||
#if TEMP_SENSOR_BOARD
|
||||
",board:{min:", BOARD_MINTEMP, ",max:", BOARD_MAXTEMP, "}"
|
||||
#endif
|
||||
#if TEMP_SENSOR_PROBE
|
||||
",probe:{min:", PROBE_MINTEMP, ",max:", PROBE_MAXTEMP, "}"
|
||||
#endif
|
||||
#if TEMP_SENSOR_SOC
|
||||
",soc:{max:", SOC_MAXTEMP, "}"
|
||||
#endif
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue