Browse Source

Enable runout sensor in EEPROM by default (#14771)

InsanityAutomation 4 years ago
parent
commit
0b154c2d71
1 changed files with 1 additions and 1 deletions
  1. 1
    1
      Marlin/src/module/configuration_store.cpp

+ 1
- 1
Marlin/src/module/configuration_store.cpp View File

@@ -574,7 +574,7 @@ void MarlinSettings::postprocess() {
574 574
       #if HAS_FILAMENT_SENSOR
575 575
         const bool &runout_sensor_enabled = runout.enabled;
576 576
       #else
577
-        const bool runout_sensor_enabled = false;
577
+        const bool runout_sensor_enabled = true;
578 578
       #endif
579 579
       #if HAS_FILAMENT_SENSOR && defined(FILAMENT_RUNOUT_DISTANCE_MM)
580 580
         const float &runout_distance_mm = runout.runout_distance();

Loading…
Cancel
Save