BIBO2 default update and Cyclops config (#10108)
This commit is contained in:
		| @@ -315,7 +315,7 @@ | ||||
| #define TEMP_SENSOR_2 0 | ||||
| #define TEMP_SENSOR_3 0 | ||||
| #define TEMP_SENSOR_4 0 | ||||
| #define TEMP_SENSOR_BED 60 | ||||
| #define TEMP_SENSOR_BED 5 | ||||
|  | ||||
| // Dummy thermistor constant temperature readings, for use with 998 and 999 | ||||
| #define DUMMY_THERMISTOR_998_VALUE 25 | ||||
| @@ -442,8 +442,8 @@ | ||||
| // It also enables the M302 command to set the minimum extrusion temperature | ||||
| // or to allow moving the extruder regardless of the hotend temperature. | ||||
| // *** IT IS HIGHLY RECOMMENDED TO LEAVE THIS OPTION ENABLED! *** | ||||
| #define PREVENT_COLD_EXTRUSION | ||||
| #define EXTRUDE_MINTEMP 170 | ||||
| //#define PREVENT_COLD_EXTRUSION | ||||
| //#define EXTRUDE_MINTEMP 170 | ||||
|  | ||||
| // This option prevents a single extrusion longer than EXTRUDE_MAXLENGTH. | ||||
| // Note that for Bowden Extruders a too-small value here may prevent loading. | ||||
| @@ -494,11 +494,11 @@ | ||||
| // Specify here all the endstop connectors that are connected to any endstop or probe. | ||||
| // Almost all printers will be using one per axis. Probes will use one or more of the | ||||
| // extra connectors. Leave undefined any used for non-endstop and non-probe purposes. | ||||
| //#define USE_XMIN_PLUG | ||||
| //#define USE_YMIN_PLUG | ||||
| #define USE_XMIN_PLUG | ||||
| #define USE_YMIN_PLUG | ||||
| #define USE_ZMIN_PLUG | ||||
| #define USE_XMAX_PLUG | ||||
| #define USE_YMAX_PLUG | ||||
| //#define USE_XMAX_PLUG | ||||
| //#define USE_YMAX_PLUG | ||||
| //#define USE_ZMAX_PLUG | ||||
|  | ||||
| // Enable pullup for all endstops to prevent a floating state | ||||
| @@ -565,14 +565,14 @@ const bool Z_MIN_PROBE_ENDSTOP_INVERTING = true; // set to true to invert the lo | ||||
|  * Override with M92 | ||||
|  *                                      X, Y, Z, E0 [, E1[, E2[, E3[, E4]]]] | ||||
|  */ | ||||
| #define DEFAULT_AXIS_STEPS_PER_UNIT   { 100, 100, 400, 93.6 } | ||||
| #define DEFAULT_AXIS_STEPS_PER_UNIT   { 100, 100, 400, 400 } | ||||
|  | ||||
| /** | ||||
|  * Default Max Feed Rate (mm/s) | ||||
|  * Override with M203 | ||||
|  *                                      X, Y, Z, E0 [, E1[, E2[, E3[, E4]]]] | ||||
|  */ | ||||
| #define DEFAULT_MAX_FEEDRATE          { 350, 350, 10, 25 } | ||||
| #define DEFAULT_MAX_FEEDRATE          { 350, 350, 10, 50 } | ||||
|  | ||||
| /** | ||||
|  * Default Max Acceleration (change/s) change = mm/s | ||||
| @@ -580,7 +580,7 @@ const bool Z_MIN_PROBE_ENDSTOP_INVERTING = true; // set to true to invert the lo | ||||
|  * Override with M201 | ||||
|  *                                      X, Y, Z, E0 [, E1[, E2[, E3[, E4]]]] | ||||
|  */ | ||||
| #define DEFAULT_MAX_ACCELERATION      { 1100, 1100, 300, 5000 } | ||||
| #define DEFAULT_MAX_ACCELERATION      { 1100, 1100, 300, 2500 } | ||||
|  | ||||
| /** | ||||
|  * Default Acceleration (change/s) change = mm/s | ||||
| @@ -727,7 +727,7 @@ const bool Z_MIN_PROBE_ENDSTOP_INVERTING = true; // set to true to invert the lo | ||||
| #define MIN_PROBE_EDGE 10 | ||||
|  | ||||
| // X and Y axis travel speed (mm/m) between probes | ||||
| #define XY_PROBE_SPEED 8000 | ||||
| #define XY_PROBE_SPEED 9000 | ||||
|  | ||||
| // Speed for the first approach when double-probing (MULTIPLE_PROBING == 2) | ||||
| #define Z_PROBE_SPEED_FAST HOMING_FEEDRATE_Z | ||||
| @@ -755,7 +755,7 @@ const bool Z_MIN_PROBE_ENDSTOP_INVERTING = true; // set to true to invert the lo | ||||
|  *     But: `M851 Z+1` with a CLEARANCE of 2  =>  2mm from bed to nozzle. | ||||
|  */ | ||||
| #define Z_CLEARANCE_DEPLOY_PROBE   10 // Z Clearance for Deploy/Stow | ||||
| #define Z_CLEARANCE_BETWEEN_PROBES 10 // Z Clearance between probe points | ||||
| #define Z_CLEARANCE_BETWEEN_PROBES  5 // Z Clearance between probe points | ||||
| //#define Z_AFTER_PROBING          10 // Z position after probing is done | ||||
|  | ||||
| // For M851 give a range for adjusting the Z probe offset | ||||
| @@ -788,8 +788,8 @@ const bool Z_MIN_PROBE_ENDSTOP_INVERTING = true; // set to true to invert the lo | ||||
| // @section machine | ||||
|  | ||||
| // Invert the stepper direction. Change (or reverse the motor connector) if an axis goes the wrong way. | ||||
| #define INVERT_X_DIR false | ||||
| #define INVERT_Y_DIR true | ||||
| #define INVERT_X_DIR true | ||||
| #define INVERT_Y_DIR false | ||||
| #define INVERT_Z_DIR false | ||||
|  | ||||
| // Enable this option for Toshiba stepper drivers | ||||
| @@ -815,22 +815,22 @@ const bool Z_MIN_PROBE_ENDSTOP_INVERTING = true; // set to true to invert the lo | ||||
|  | ||||
| // Direction of endstops when homing; 1=MAX, -1=MIN | ||||
| // :[-1,1] | ||||
| #define X_HOME_DIR 1 | ||||
| #define Y_HOME_DIR 1 | ||||
| #define X_HOME_DIR -1 | ||||
| #define Y_HOME_DIR -1 | ||||
| #define Z_HOME_DIR -1 | ||||
|  | ||||
| // @section machine | ||||
|  | ||||
| // The size of the print bed | ||||
| #define X_BED_SIZE 214 | ||||
| #define X_BED_SIZE 220 | ||||
| #define Y_BED_SIZE 186 | ||||
|  | ||||
| // Travel limits (mm) after homing, corresponding to endstop positions. | ||||
| #define X_MIN_POS -107 | ||||
| #define Y_MIN_POS -93 | ||||
| #define X_MIN_POS -13 | ||||
| #define Y_MIN_POS 0 | ||||
| #define Z_MIN_POS 0 | ||||
| #define X_MAX_POS 141 | ||||
| #define Y_MAX_POS 93 | ||||
| #define X_MAX_POS 250 | ||||
| #define Y_MAX_POS 186 | ||||
| #define Z_MAX_POS 186 | ||||
|  | ||||
| /** | ||||
| @@ -1090,8 +1090,8 @@ const bool Z_MIN_PROBE_ENDSTOP_INVERTING = true; // set to true to invert the lo | ||||
| #endif | ||||
|  | ||||
| // Homing speeds (mm/m) | ||||
| #define HOMING_FEEDRATE_XY (15*60) | ||||
| #define HOMING_FEEDRATE_Z  (4*60) | ||||
| #define HOMING_FEEDRATE_XY (25*60) | ||||
| #define HOMING_FEEDRATE_Z  (6*60) | ||||
|  | ||||
| // @section calibrate | ||||
|  | ||||
| @@ -1196,12 +1196,12 @@ const bool Z_MIN_PROBE_ENDSTOP_INVERTING = true; // set to true to invert the lo | ||||
| // @section temperature | ||||
|  | ||||
| // Preheat Constants | ||||
| #define PREHEAT_1_TEMP_HOTEND 180 | ||||
| #define PREHEAT_1_TEMP_BED     60 | ||||
| #define PREHEAT_1_TEMP_HOTEND 190 | ||||
| #define PREHEAT_1_TEMP_BED     65 | ||||
| #define PREHEAT_1_FAN_SPEED     0 // Value from 0 to 255 | ||||
|  | ||||
| #define PREHEAT_2_TEMP_HOTEND 240 | ||||
| #define PREHEAT_2_TEMP_BED    80 | ||||
| #define PREHEAT_2_TEMP_BED    100 | ||||
| #define PREHEAT_2_FAN_SPEED     0 // Value from 0 to 255 | ||||
|  | ||||
| /** | ||||
|   | ||||
							
								
								
									
										1625
									
								
								Marlin/src/config/examples/BIBO/TouchX/cyclops/Configuration_adv.h
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										1625
									
								
								Marlin/src/config/examples/BIBO/TouchX/cyclops/Configuration_adv.h
									
									
									
									
									
										Normal file
									
								
							
										
											
												File diff suppressed because it is too large
												Load Diff
											
										
									
								
							
		Reference in New Issue
	
	Block a user