Bladeren bron

BIBO2 default update and Cyclops config (#10108)

shaktee 6 jaren geleden
bovenliggende
commit
63fc4a8521

+ 26
- 26
Marlin/src/config/examples/BIBO/TouchX/cyclops/Configuration.h Bestand weergeven

@@ -315,7 +315,7 @@
315 315
 #define TEMP_SENSOR_2 0
316 316
 #define TEMP_SENSOR_3 0
317 317
 #define TEMP_SENSOR_4 0
318
-#define TEMP_SENSOR_BED 60
318
+#define TEMP_SENSOR_BED 5
319 319
 
320 320
 // Dummy thermistor constant temperature readings, for use with 998 and 999
321 321
 #define DUMMY_THERMISTOR_998_VALUE 25
@@ -442,8 +442,8 @@
442 442
 // It also enables the M302 command to set the minimum extrusion temperature
443 443
 // or to allow moving the extruder regardless of the hotend temperature.
444 444
 // *** IT IS HIGHLY RECOMMENDED TO LEAVE THIS OPTION ENABLED! ***
445
-#define PREVENT_COLD_EXTRUSION
446
-#define EXTRUDE_MINTEMP 170
445
+//#define PREVENT_COLD_EXTRUSION
446
+//#define EXTRUDE_MINTEMP 170
447 447
 
448 448
 // This option prevents a single extrusion longer than EXTRUDE_MAXLENGTH.
449 449
 // Note that for Bowden Extruders a too-small value here may prevent loading.
@@ -494,11 +494,11 @@
494 494
 // Specify here all the endstop connectors that are connected to any endstop or probe.
495 495
 // Almost all printers will be using one per axis. Probes will use one or more of the
496 496
 // extra connectors. Leave undefined any used for non-endstop and non-probe purposes.
497
-//#define USE_XMIN_PLUG
498
-//#define USE_YMIN_PLUG
497
+#define USE_XMIN_PLUG
498
+#define USE_YMIN_PLUG
499 499
 #define USE_ZMIN_PLUG
500
-#define USE_XMAX_PLUG
501
-#define USE_YMAX_PLUG
500
+//#define USE_XMAX_PLUG
501
+//#define USE_YMAX_PLUG
502 502
 //#define USE_ZMAX_PLUG
503 503
 
504 504
 // 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
565 565
  * Override with M92
566 566
  *                                      X, Y, Z, E0 [, E1[, E2[, E3[, E4]]]]
567 567
  */
568
-#define DEFAULT_AXIS_STEPS_PER_UNIT   { 100, 100, 400, 93.6 }
568
+#define DEFAULT_AXIS_STEPS_PER_UNIT   { 100, 100, 400, 400 }
569 569
 
570 570
 /**
571 571
  * Default Max Feed Rate (mm/s)
572 572
  * Override with M203
573 573
  *                                      X, Y, Z, E0 [, E1[, E2[, E3[, E4]]]]
574 574
  */
575
-#define DEFAULT_MAX_FEEDRATE          { 350, 350, 10, 25 }
575
+#define DEFAULT_MAX_FEEDRATE          { 350, 350, 10, 50 }
576 576
 
577 577
 /**
578 578
  * 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
580 580
  * Override with M201
581 581
  *                                      X, Y, Z, E0 [, E1[, E2[, E3[, E4]]]]
582 582
  */
583
-#define DEFAULT_MAX_ACCELERATION      { 1100, 1100, 300, 5000 }
583
+#define DEFAULT_MAX_ACCELERATION      { 1100, 1100, 300, 2500 }
584 584
 
585 585
 /**
586 586
  * 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
727 727
 #define MIN_PROBE_EDGE 10
728 728
 
729 729
 // X and Y axis travel speed (mm/m) between probes
730
-#define XY_PROBE_SPEED 8000
730
+#define XY_PROBE_SPEED 9000
731 731
 
732 732
 // Speed for the first approach when double-probing (MULTIPLE_PROBING == 2)
733 733
 #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
755 755
  *     But: `M851 Z+1` with a CLEARANCE of 2  =>  2mm from bed to nozzle.
756 756
  */
757 757
 #define Z_CLEARANCE_DEPLOY_PROBE   10 // Z Clearance for Deploy/Stow
758
-#define Z_CLEARANCE_BETWEEN_PROBES 10 // Z Clearance between probe points
758
+#define Z_CLEARANCE_BETWEEN_PROBES  5 // Z Clearance between probe points
759 759
 //#define Z_AFTER_PROBING          10 // Z position after probing is done
760 760
 
761 761
 // 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
788 788
 // @section machine
789 789
 
790 790
 // Invert the stepper direction. Change (or reverse the motor connector) if an axis goes the wrong way.
791
-#define INVERT_X_DIR false
792
-#define INVERT_Y_DIR true
791
+#define INVERT_X_DIR true
792
+#define INVERT_Y_DIR false
793 793
 #define INVERT_Z_DIR false
794 794
 
795 795
 // 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
815 815
 
816 816
 // Direction of endstops when homing; 1=MAX, -1=MIN
817 817
 // :[-1,1]
818
-#define X_HOME_DIR 1
819
-#define Y_HOME_DIR 1
818
+#define X_HOME_DIR -1
819
+#define Y_HOME_DIR -1
820 820
 #define Z_HOME_DIR -1
821 821
 
822 822
 // @section machine
823 823
 
824 824
 // The size of the print bed
825
-#define X_BED_SIZE 214
825
+#define X_BED_SIZE 220
826 826
 #define Y_BED_SIZE 186
827 827
 
828 828
 // Travel limits (mm) after homing, corresponding to endstop positions.
829
-#define X_MIN_POS -107
830
-#define Y_MIN_POS -93
829
+#define X_MIN_POS -13
830
+#define Y_MIN_POS 0
831 831
 #define Z_MIN_POS 0
832
-#define X_MAX_POS 141
833
-#define Y_MAX_POS 93
832
+#define X_MAX_POS 250
833
+#define Y_MAX_POS 186
834 834
 #define Z_MAX_POS 186
835 835
 
836 836
 /**
@@ -1090,8 +1090,8 @@ const bool Z_MIN_PROBE_ENDSTOP_INVERTING = true; // set to true to invert the lo
1090 1090
 #endif
1091 1091
 
1092 1092
 // Homing speeds (mm/m)
1093
-#define HOMING_FEEDRATE_XY (15*60)
1094
-#define HOMING_FEEDRATE_Z  (4*60)
1093
+#define HOMING_FEEDRATE_XY (25*60)
1094
+#define HOMING_FEEDRATE_Z  (6*60)
1095 1095
 
1096 1096
 // @section calibrate
1097 1097
 
@@ -1196,12 +1196,12 @@ const bool Z_MIN_PROBE_ENDSTOP_INVERTING = true; // set to true to invert the lo
1196 1196
 // @section temperature
1197 1197
 
1198 1198
 // Preheat Constants
1199
-#define PREHEAT_1_TEMP_HOTEND 180
1200
-#define PREHEAT_1_TEMP_BED     60
1199
+#define PREHEAT_1_TEMP_HOTEND 190
1200
+#define PREHEAT_1_TEMP_BED     65
1201 1201
 #define PREHEAT_1_FAN_SPEED     0 // Value from 0 to 255
1202 1202
 
1203 1203
 #define PREHEAT_2_TEMP_HOTEND 240
1204
-#define PREHEAT_2_TEMP_BED    80
1204
+#define PREHEAT_2_TEMP_BED    100
1205 1205
 #define PREHEAT_2_FAN_SPEED     0 // Value from 0 to 255
1206 1206
 
1207 1207
 /**

+ 1625
- 0
Marlin/src/config/examples/BIBO/TouchX/cyclops/Configuration_adv.h
Diff onderdrukt omdat het te groot bestand
Bestand weergeven


Marlin/src/config/examples/BIBO/TouchX/Configuration_adv.h → Marlin/src/config/examples/BIBO/TouchX/default/Configuration_adv.h Bestand weergeven


Laden…
Annuleren
Opslaan