Browse Source

New mods, now using TMC2100 and E3Dv6.

Thomas B (OrangePi i3) 7 years ago
parent
commit
9ab0336388
2 changed files with 19 additions and 19 deletions
  1. 15
    15
      Marlin/Configuration.h
  2. 4
    4
      Marlin/Configuration_adv.h

+ 15
- 15
Marlin/Configuration.h View File

77
 #define STRING_CONFIG_H_AUTHOR "(xythobuz, CTC DIY)" // Who made the changes.
77
 #define STRING_CONFIG_H_AUTHOR "(xythobuz, CTC DIY)" // Who made the changes.
78
 #define SHOW_BOOTSCREEN
78
 #define SHOW_BOOTSCREEN
79
 #define STRING_SPLASH_LINE1 SHORT_BUILD_VERSION // will be shown during bootup in line 1
79
 #define STRING_SPLASH_LINE1 SHORT_BUILD_VERSION // will be shown during bootup in line 1
80
-#define STRING_SPLASH_LINE2 WEBSITE_URL         // will be shown during bootup in line 2
80
+#define STRING_SPLASH_LINE2 "xythobuz.de"         // will be shown during bootup in line 2
81
 
81
 
82
 //
82
 //
83
 // *** VENDORS PLEASE READ *****************************************************
83
 // *** VENDORS PLEASE READ *****************************************************
352
   // If you are using a pre-configured hotend then you can use one of the value sets by uncommenting it
352
   // If you are using a pre-configured hotend then you can use one of the value sets by uncommenting it
353
 
353
 
354
   // Ultimaker
354
   // Ultimaker
355
-  //#define  DEFAULT_Kp 22.2
356
-  //#define  DEFAULT_Ki 1.08
357
-  //#define  DEFAULT_Kd 114
355
+  #define  DEFAULT_Kp 22.2
356
+  #define  DEFAULT_Ki 1.08
357
+  #define  DEFAULT_Kd 114
358
 
358
 
359
   // MakerGear
359
   // MakerGear
360
   //#define  DEFAULT_Kp 7.0
360
   //#define  DEFAULT_Kp 7.0
367
   //#define  DEFAULT_Kd 440
367
   //#define  DEFAULT_Kd 440
368
 
368
 
369
   // Anet A8 - using for CTC i3 Pro B
369
   // Anet A8 - using for CTC i3 Pro B
370
-  #define DEFAULT_Kp 21.0
371
-  #define DEFAULT_Ki 1.25
372
-  #define DEFAULT_Kd 86.0
370
+  //#define DEFAULT_Kp 21.0
371
+  //#define DEFAULT_Ki 1.25
372
+  //#define DEFAULT_Kd 86.0
373
 
373
 
374
 #endif // PIDTEMP
374
 #endif // PIDTEMP
375
 
375
 
530
  * Override with M92
530
  * Override with M92
531
  *                                      X, Y, Z, E0 [, E1[, E2[, E3[, E4]]]]
531
  *                                      X, Y, Z, E0 [, E1[, E2[, E3[, E4]]]]
532
  */
532
  */
533
-#define DEFAULT_AXIS_STEPS_PER_UNIT   { 80.10, 80.10, 2560, 105.0 }
533
+#define DEFAULT_AXIS_STEPS_PER_UNIT   { 80.10, 80.10, 400, 99.0 }
534
 
534
 
535
 /**
535
 /**
536
  * Default Max Feed Rate (mm/s)
536
  * Default Max Feed Rate (mm/s)
747
 // @section machine
747
 // @section machine
748
 
748
 
749
 // Invert the stepper direction. Change (or reverse the motor connector) if an axis goes the wrong way.
749
 // Invert the stepper direction. Change (or reverse the motor connector) if an axis goes the wrong way.
750
-#define INVERT_X_DIR false
751
-#define INVERT_Y_DIR true
752
-#define INVERT_Z_DIR false
750
+#define INVERT_X_DIR true
751
+#define INVERT_Y_DIR false
752
+#define INVERT_Z_DIR true
753
 
753
 
754
 // Enable this option for Toshiba stepper drivers
754
 // Enable this option for Toshiba stepper drivers
755
 //#define CONFIG_STEPPERS_TOSHIBA
755
 //#define CONFIG_STEPPERS_TOSHIBA
758
 
758
 
759
 // For direct drive extruder v9 set to true, for geared extruder set to false.
759
 // For direct drive extruder v9 set to true, for geared extruder set to false.
760
 #define INVERT_E0_DIR true
760
 #define INVERT_E0_DIR true
761
-#define INVERT_E1_DIR false
762
-#define INVERT_E2_DIR false
763
-#define INVERT_E3_DIR false
764
-#define INVERT_E4_DIR false
761
+#define INVERT_E1_DIR true
762
+#define INVERT_E2_DIR true
763
+#define INVERT_E3_DIR true
764
+#define INVERT_E4_DIR true
765
 
765
 
766
 // @section homing
766
 // @section homing
767
 
767
 

+ 4
- 4
Marlin/Configuration_adv.h View File

599
  *
599
  *
600
  * Warning: Does not respect endstops!
600
  * Warning: Does not respect endstops!
601
  */
601
  */
602
-//#define BABYSTEPPING
602
+#define BABYSTEPPING
603
 #if ENABLED(BABYSTEPPING)
603
 #if ENABLED(BABYSTEPPING)
604
-  //#define BABYSTEP_XY              // Also enable X/Y Babystepping. Not supported on DELTA!
604
+  #define BABYSTEP_XY              // Also enable X/Y Babystepping. Not supported on DELTA!
605
   #define BABYSTEP_INVERT_Z false    // Change if Z babysteps should go the other way
605
   #define BABYSTEP_INVERT_Z false    // Change if Z babysteps should go the other way
606
   #define BABYSTEP_MULTIPLICATOR 100 // Babysteps are very small. Increase for faster motion.
606
   #define BABYSTEP_MULTIPLICATOR 100 // Babysteps are very small. Increase for faster motion.
607
   //#define BABYSTEP_ZPROBE_OFFSET   // Enable to combine M851 and Babystepping
607
   //#define BABYSTEP_ZPROBE_OFFSET   // Enable to combine M851 and Babystepping
608
-  //#define DOUBLECLICK_FOR_Z_BABYSTEPPING // Double-click on the Status Screen for Z Babystepping.
608
+  #define DOUBLECLICK_FOR_Z_BABYSTEPPING // Double-click on the Status Screen for Z Babystepping.
609
   #define DOUBLECLICK_MAX_INTERVAL 1250 // Maximum interval between clicks, in milliseconds.
609
   #define DOUBLECLICK_MAX_INTERVAL 1250 // Maximum interval between clicks, in milliseconds.
610
                                         // Note: Extra time may be added to mitigate controller latency.
610
                                         // Note: Extra time may be added to mitigate controller latency.
611
-  //#define BABYSTEP_ZPROBE_GFX_OVERLAY // Enable graphical overlay on Z-offset editor
611
+  #define BABYSTEP_ZPROBE_GFX_OVERLAY // Enable graphical overlay on Z-offset editor
612
   //#define BABYSTEP_ZPROBE_GFX_REVERSE // Reverses the direction of the CW/CCW indicators
612
   //#define BABYSTEP_ZPROBE_GFX_REVERSE // Reverses the direction of the CW/CCW indicators
613
 #endif
613
 #endif
614
 
614
 

Loading…
Cancel
Save