Browse Source

Enable runout sensor in EEPROM by default (#14771)

InsanityAutomation 6 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
       #if HAS_FILAMENT_SENSOR
574
       #if HAS_FILAMENT_SENSOR
575
         const bool &runout_sensor_enabled = runout.enabled;
575
         const bool &runout_sensor_enabled = runout.enabled;
576
       #else
576
       #else
577
-        const bool runout_sensor_enabled = false;
577
+        const bool runout_sensor_enabled = true;
578
       #endif
578
       #endif
579
       #if HAS_FILAMENT_SENSOR && defined(FILAMENT_RUNOUT_DISTANCE_MM)
579
       #if HAS_FILAMENT_SENSOR && defined(FILAMENT_RUNOUT_DISTANCE_MM)
580
         const float &runout_distance_mm = runout.runout_distance();
580
         const float &runout_distance_mm = runout.runout_distance();

Loading…
Cancel
Save