Clean up spacing and comments
Also clean up some trailing spaces in a few other sources
This commit is contained in:
		
				
					committed by
					
						 Richard Wackerbarth
						Richard Wackerbarth
					
				
			
			
				
	
			
			
			
						parent
						
							d3bce05d54
						
					
				
				
					commit
					a274769f4f
				
			| @@ -261,7 +261,7 @@ Here are some standard links for getting your machine calibrated: | ||||
| // shouldn't use bed PID until someone else verifies your hardware works. | ||||
| // If this is enabled, find your own PID constants below. | ||||
| //#define PIDTEMPBED | ||||
| // | ||||
|  | ||||
| //#define BED_LIMIT_SWITCHING | ||||
|  | ||||
| // This sets the max power delivered to the bed, and replaces the HEATER_BED_DUTY_CYCLE_DIVIDER option. | ||||
| @@ -385,6 +385,8 @@ const bool Z_PROBE_ENDSTOP_INVERTING = true; // set to true to invert the logic | ||||
| #define INVERT_Z_DIR false | ||||
|  | ||||
| // @section extruder | ||||
|  | ||||
| // For direct drive extruder v9 set to true, for geared extruder set to false. | ||||
| #define INVERT_E0_DIR false | ||||
| #define INVERT_E1_DIR false | ||||
| #define INVERT_E2_DIR false | ||||
| @@ -423,8 +425,8 @@ const bool Z_PROBE_ENDSTOP_INVERTING = true; // set to true to invert the logic | ||||
|   const bool FIL_RUNOUT_INVERTING = true;  // Should be uncommented and true or false should assigned | ||||
|   #define ENDSTOPPULLUP_FIL_RUNOUT // Uncomment to use internal pullup for filament runout pins if the sensor is defined. | ||||
|   #define FILAMENT_RUNOUT_SCRIPT "M600" | ||||
| #endif  | ||||
|    | ||||
| #endif | ||||
|  | ||||
| //=========================================================================== | ||||
| //=========================== Manual Bed Leveling =========================== | ||||
| //=========================================================================== | ||||
| @@ -433,7 +435,7 @@ const bool Z_PROBE_ENDSTOP_INVERTING = true; // set to true to invert the logic | ||||
| // #define MESH_BED_LEVELING    // Enable mesh bed leveling | ||||
|  | ||||
| #ifdef MANUAL_BED_LEVELING | ||||
|   #define MBL_Z_STEP 0.025 | ||||
|   #define MBL_Z_STEP 0.025  // Step size while manually probing Z axis | ||||
| #endif  // MANUAL_BED_LEVELING | ||||
|  | ||||
| #ifdef MESH_BED_LEVELING | ||||
| @@ -474,13 +476,13 @@ const bool Z_PROBE_ENDSTOP_INVERTING = true; // set to true to invert the logic | ||||
|  | ||||
|   #ifdef AUTO_BED_LEVELING_GRID | ||||
|  | ||||
|     // set the rectangle in which to probe | ||||
|     #define DELTA_PROBABLE_RADIUS (DELTA_PRINTABLE_RADIUS - 10) | ||||
|  | ||||
|     #define LEFT_PROBE_BED_POSITION -DELTA_PROBABLE_RADIUS | ||||
|     #define RIGHT_PROBE_BED_POSITION DELTA_PROBABLE_RADIUS | ||||
|     #define FRONT_PROBE_BED_POSITION -DELTA_PROBABLE_RADIUS | ||||
|     #define BACK_PROBE_BED_POSITION DELTA_PROBABLE_RADIUS | ||||
|      | ||||
|  | ||||
|     #define MIN_PROBE_EDGE 10 // The probe square sides can be no smaller than this | ||||
|  | ||||
|     // Non-linear bed leveling will be used. | ||||
| @@ -519,13 +521,14 @@ const bool Z_PROBE_ENDSTOP_INVERTING = true; // set to true to invert the logic | ||||
|  | ||||
| //   #define Z_PROBE_END_SCRIPT "G1 Z10 F12000\nG1 X15 Y330\nG1 Z0.5\nG1 Z10" //These commands will be executed in the end of G29 routine. | ||||
|                                                                             //Useful to retract a deployable probe. | ||||
|                                                                             | ||||
|  | ||||
|   //#define Z_PROBE_SLED // turn on if you have a z-probe mounted on a sled like those designed by Charles Bell | ||||
|   //#define SLED_DOCKING_OFFSET 5 // the extra distance the X axis must travel to pickup the sled. 0 should be fine but you can push it further if you'd like. | ||||
|  | ||||
|   // Allen key retractable z-probe as seen on many Kossel delta printers - http://reprap.org/wiki/Kossel#Automatic_bed_leveling_probe | ||||
|   // Deploys by touching z-axis belt. Retracts by pushing the probe down. Uses Z_MIN_PIN. | ||||
|   //#define Z_PROBE_ALLEN_KEY | ||||
|  | ||||
|   #ifdef Z_PROBE_ALLEN_KEY | ||||
|     #define Z_PROBE_ALLEN_KEY_DEPLOY_X 30 | ||||
|     #define Z_PROBE_ALLEN_KEY_DEPLOY_Y DELTA_PRINTABLE_RADIUS | ||||
| @@ -536,7 +539,7 @@ const bool Z_PROBE_ENDSTOP_INVERTING = true; // set to true to invert the logic | ||||
|     #define Z_PROBE_ALLEN_KEY_STOW_Z     23 | ||||
|     #define Z_PROBE_ALLEN_KEY_STOW_DEPTH 20 | ||||
|   #endif | ||||
|    | ||||
|  | ||||
|   //If defined, the Probe servo will be turned on only during movement and then turned off to avoid jerk | ||||
|   //The value is the delay to turn the servo off after powered on - depends on the servo speed; 300ms is good value, but you can try lower it. | ||||
|   // You MUST HAVE the SERVO_ENDSTOPS defined to use here a value higher than zero otherwise your code will not compile. | ||||
| @@ -598,7 +601,6 @@ const bool Z_PROBE_ENDSTOP_INVERTING = true; // set to true to invert the logic | ||||
|  * MOVEMENT SETTINGS | ||||
|  */ | ||||
|  | ||||
|  | ||||
| // delta homing speeds must be the same on xyz | ||||
| #define HOMING_FEEDRATE {200*60, 200*60, 200*60, 0}  // set the homing speeds (mm/min) | ||||
|  | ||||
| @@ -609,7 +611,7 @@ const bool Z_PROBE_ENDSTOP_INVERTING = true; // set to true to invert the logic | ||||
| #define DEFAULT_MAX_ACCELERATION      {9000,9000,9000,10000}    // X, Y, Z, E maximum start speed for accelerated moves. E default values are good for skeinforge 40+, for older versions raise them a lot. | ||||
|  | ||||
| #define DEFAULT_ACCELERATION          3000    // X, Y, Z and E acceleration in mm/s^2 for printing moves | ||||
| #define DEFAULT_RETRACT_ACCELERATION  3000   // E acceleration in mm/s^2 for retracts | ||||
| #define DEFAULT_RETRACT_ACCELERATION  3000    // E acceleration in mm/s^2 for retracts | ||||
| #define DEFAULT_TRAVEL_ACCELERATION   3000    // X, Y, Z acceleration in mm/s^2 for travel (non printing) moves | ||||
|  | ||||
| // Offset of the extruders (uncomment if using more than one and relying on firmware to position when changing). | ||||
| @@ -621,7 +623,7 @@ const bool Z_PROBE_ENDSTOP_INVERTING = true; // set to true to invert the logic | ||||
| // The speed change that does not require acceleration (i.e. the software might assume it can be done instantaneously) | ||||
| #define DEFAULT_XYJERK                20.0    // (mm/sec) | ||||
| #define DEFAULT_ZJERK                 20.0    // (mm/sec) Must be same as XY for delta | ||||
| #define DEFAULT_EJERK                 5.0    // (mm/sec) | ||||
| #define DEFAULT_EJERK                 5.0     // (mm/sec) | ||||
|  | ||||
|  | ||||
| //============================================================================= | ||||
| @@ -652,7 +654,7 @@ const bool Z_PROBE_ENDSTOP_INVERTING = true; // set to true to invert the logic | ||||
|  | ||||
| #ifdef EEPROM_SETTINGS | ||||
|   // To disable EEPROM Serial responses and decrease program space by ~1700 byte: comment this out: | ||||
|   #define EEPROM_CHITCHAT // please keep turned on if you can. | ||||
|   #define EEPROM_CHITCHAT // Please keep turned on if you can. | ||||
| #endif | ||||
|  | ||||
| // @section temperature | ||||
| @@ -693,7 +695,6 @@ const bool Z_PROBE_ENDSTOP_INVERTING = true; // set to true to invert the logic | ||||
| //#define LCD_FEEDBACK_FREQUENCY_DURATION_MS 100 // the duration the buzzer plays the UI feedback sound. ie Screen Click | ||||
| //#define LCD_FEEDBACK_FREQUENCY_HZ 1000         // this is the tone frequency the buzzer plays when on UI feedback. ie Screen Click | ||||
|                                                  // 0 to disable buzzer feedback. Test with M300 S<frequency Hz> P<duration ms> | ||||
|  | ||||
| // PanelOne from T3P3 (via RAMPS 1.4 AUX2/AUX3) | ||||
| // http://reprap.org/wiki/PanelOne | ||||
| //#define PANEL_ONE | ||||
| @@ -761,7 +762,7 @@ const bool Z_PROBE_ENDSTOP_INVERTING = true; // set to true to invert the logic | ||||
| // --------------------- | ||||
| // 2 wire Non-latching LCD SR from: | ||||
| // https://bitbucket.org/fmalpartida/new-liquidcrystal/wiki/schematics#!shiftregister-connection | ||||
|  | ||||
| // LCD configuration: http://reprap.org/wiki/SAV_3D_LCD | ||||
| //#define SAV_3DLCD | ||||
|  | ||||
| // @section extras | ||||
| @@ -789,7 +790,7 @@ const bool Z_PROBE_ENDSTOP_INVERTING = true; // set to true to invert the logic | ||||
| // Data from: http://www.doc-diy.net/photo/rc-1_hacked/ | ||||
| // #define PHOTOGRAPH_PIN     23 | ||||
|  | ||||
| // SF send wrong arc g-codes when using Arc Point as fillet procedure | ||||
| // SkeinForge sends the wrong arc g-codes when using Arc Point as fillet procedure | ||||
| //#define SF_ARC_FIX | ||||
|  | ||||
| // Support for the BariCUDA Paste Extruder. | ||||
|   | ||||
		Reference in New Issue
	
	Block a user