|
@@ -401,7 +401,7 @@ const bool Z_PROBE_ENDSTOP_INVERTING = false; // set to true to invert the logic
|
401
|
401
|
const bool FIL_RUNOUT_INVERTING = true; // Should be uncommented and true or false should assigned
|
402
|
402
|
#define ENDSTOPPULLUP_FIL_RUNOUT // Uncomment to use internal pullup for filament runout pins if the sensor is defined.
|
403
|
403
|
#define FILAMENT_RUNOUT_SCRIPT "M600"
|
404
|
|
-#endif
|
|
404
|
+#endif
|
405
|
405
|
|
406
|
406
|
//===========================================================================
|
407
|
407
|
//=========================== Manual Bed Leveling ===========================
|
|
@@ -411,7 +411,7 @@ const bool Z_PROBE_ENDSTOP_INVERTING = false; // set to true to invert the logic
|
411
|
411
|
// #define MESH_BED_LEVELING // Enable mesh bed leveling
|
412
|
412
|
|
413
|
413
|
#ifdef MANUAL_BED_LEVELING
|
414
|
|
- #define MBL_Z_STEP 0.025
|
|
414
|
+ #define MBL_Z_STEP 0.025 // Step size while manually probing Z axis
|
415
|
415
|
#endif // MANUAL_BED_LEVELING
|
416
|
416
|
|
417
|
417
|
#ifdef MESH_BED_LEVELING
|
|
@@ -605,7 +605,7 @@ const bool Z_PROBE_ENDSTOP_INVERTING = false; // set to true to invert the logic
|
605
|
605
|
|
606
|
606
|
#ifdef EEPROM_SETTINGS
|
607
|
607
|
// To disable EEPROM Serial responses and decrease program space by ~1700 byte: comment this out:
|
608
|
|
- #define EEPROM_CHITCHAT // please keep turned on if you can.
|
|
608
|
+ #define EEPROM_CHITCHAT // Please keep turned on if you can.
|
609
|
609
|
#endif
|
610
|
610
|
|
611
|
611
|
// @section temperature
|
|
@@ -646,7 +646,6 @@ const bool Z_PROBE_ENDSTOP_INVERTING = false; // set to true to invert the logic
|
646
|
646
|
//#define LCD_FEEDBACK_FREQUENCY_DURATION_MS 100 // the duration the buzzer plays the UI feedback sound. ie Screen Click
|
647
|
647
|
//#define LCD_FEEDBACK_FREQUENCY_HZ 1000 // this is the tone frequency the buzzer plays when on UI feedback. ie Screen Click
|
648
|
648
|
// 0 to disable buzzer feedback. Test with M300 S<frequency Hz> P<duration ms>
|
649
|
|
-
|
650
|
649
|
// PanelOne from T3P3 (via RAMPS 1.4 AUX2/AUX3)
|
651
|
650
|
// http://reprap.org/wiki/PanelOne
|
652
|
651
|
//#define PANEL_ONE
|
|
@@ -779,13 +778,13 @@ const bool Z_PROBE_ENDSTOP_INVERTING = false; // set to true to invert the logic
|
779
|
778
|
// Uncomment below to enable
|
780
|
779
|
//#define FILAMENT_SENSOR
|
781
|
780
|
|
782
|
|
-#define FILAMENT_SENSOR_EXTRUDER_NUM 0 //The number of the extruder that has the filament sensor (0,1,2)
|
783
|
|
-#define MEASUREMENT_DELAY_CM 14 //measurement delay in cm. This is the distance from filament sensor to middle of barrel
|
|
781
|
+#define FILAMENT_SENSOR_EXTRUDER_NUM 0 //The number of the extruder that has the filament sensor (0,1,2)
|
|
782
|
+#define MEASUREMENT_DELAY_CM 14 //measurement delay in cm. This is the distance from filament sensor to middle of barrel
|
784
|
783
|
|
785
|
|
-#define DEFAULT_NOMINAL_FILAMENT_DIA 3.0 //Enter the diameter (in mm) of the filament generally used (3.0 mm or 1.75 mm) - this is then used in the slicer software. Used for sensor reading validation
|
786
|
|
-#define MEASURED_UPPER_LIMIT 3.30 //upper limit factor used for sensor reading validation in mm
|
787
|
|
-#define MEASURED_LOWER_LIMIT 1.90 //lower limit factor for sensor reading validation in mm
|
788
|
|
-#define MAX_MEASUREMENT_DELAY 20 //delay buffer size in bytes (1 byte = 1cm)- limits maximum measurement delay allowable (must be larger than MEASUREMENT_DELAY_CM and lower number saves RAM)
|
|
784
|
+#define DEFAULT_NOMINAL_FILAMENT_DIA 3.0 //Enter the diameter (in mm) of the filament generally used (3.0 mm or 1.75 mm) - this is then used in the slicer software. Used for sensor reading validation
|
|
785
|
+#define MEASURED_UPPER_LIMIT 3.3 //upper limit factor used for sensor reading validation in mm
|
|
786
|
+#define MEASURED_LOWER_LIMIT 1.9 //lower limit factor for sensor reading validation in mm
|
|
787
|
+#define MAX_MEASUREMENT_DELAY 20 //delay buffer size in bytes (1 byte = 1cm)- limits maximum measurement delay allowable (must be larger than MEASUREMENT_DELAY_CM and lower number saves RAM)
|
789
|
788
|
|
790
|
789
|
//defines used in the code
|
791
|
790
|
#define DEFAULT_MEASURED_FILAMENT_DIA DEFAULT_NOMINAL_FILAMENT_DIA //set measured to nominal initially
|