Browse Source

Improve SKR mini E3 + Ender 3 settings (#16247)

salami738 4 years ago
parent
commit
329f5b4df9

+ 1
- 1
config/examples/BigTreeTech/SKR Mini E3 1.0/Configuration_adv.h View File

@@ -2090,7 +2090,7 @@
2090 2090
    * STEALTHCHOP_(XY|Z|E) must be enabled to use HYBRID_THRESHOLD.
2091 2091
    * M913 X/Y/Z/E to live tune the setting
2092 2092
    */
2093
-  //#define HYBRID_THRESHOLD
2093
+  #define HYBRID_THRESHOLD
2094 2094
 
2095 2095
   #define X_HYBRID_THRESHOLD     100  // [mm/s]
2096 2096
   #define X2_HYBRID_THRESHOLD    100

+ 9
- 5
config/examples/BigTreeTech/SKR Mini E3 1.2/Configuration.h View File

@@ -498,7 +498,7 @@
498 498
  * heater. If your configuration is significantly different than this and you don't understand
499 499
  * the issues involved, don't use bed PID until someone else verifies that your hardware works.
500 500
  */
501
-//#define PIDTEMPBED
501
+#define PIDTEMPBED
502 502
 
503 503
 //#define BED_LIMIT_SWITCHING
504 504
 
@@ -516,9 +516,9 @@
516 516
 
517 517
   //120V 250W silicone heater into 4mm borosilicate (MendelMax 1.5+)
518 518
   //from FOPDT model - kp=.39 Tp=405 Tdead=66, Tc set to 79.2, aggressive factor of .15 (vs .1, 1, 10)
519
-  #define DEFAULT_bedKp 10.00
520
-  #define DEFAULT_bedKi .023
521
-  #define DEFAULT_bedKd 305.4
519
+  //#define DEFAULT_bedKp 10.00
520
+  //#define DEFAULT_bedKi .023
521
+  //#define DEFAULT_bedKd 305.4
522 522
 
523 523
   //120V 250W silicone heater into 4mm borosilicate (MendelMax 1.5+)
524 524
   //from pidautotune
@@ -527,6 +527,10 @@
527 527
   //#define DEFAULT_bedKd 1675.16
528 528
 
529 529
   // FIND YOUR OWN: "M303 E-1 C8 S90" to run autotune on the bed at 90 degreesC for 8 cycles.
530
+  #define DEFAULT_bedKp 50.71
531
+  #define DEFAULT_bedKi 9.88
532
+  #define DEFAULT_bedKd 173.43
533
+
530 534
 #endif // PIDTEMPBED
531 535
 
532 536
 // @section extruder
@@ -1199,7 +1203,7 @@
1199 1203
 #if EITHER(AUTO_BED_LEVELING_LINEAR, AUTO_BED_LEVELING_BILINEAR)
1200 1204
 
1201 1205
   // Set the number of grid points per dimension.
1202
-  #define GRID_MAX_POINTS_X 3
1206
+  #define GRID_MAX_POINTS_X 5
1203 1207
   #define GRID_MAX_POINTS_Y GRID_MAX_POINTS_X
1204 1208
 
1205 1209
   // Probe along the Y axis, advancing X after each column

+ 6
- 6
config/examples/BigTreeTech/SKR Mini E3 1.2/Configuration_adv.h View File

@@ -1150,7 +1150,7 @@
1150 1150
      *
1151 1151
      * :[ 'LCD', 'ONBOARD', 'CUSTOM_CABLE' ]
1152 1152
      */
1153
-    //#define SDCARD_CONNECTION LCD
1153
+    #define SDCARD_CONNECTION ONBOARD
1154 1154
   #endif
1155 1155
 
1156 1156
 #endif // SDSUPPORT
@@ -1573,16 +1573,16 @@
1573 1573
 // The number of linear motions that can be in the plan at any give time.
1574 1574
 // THE BLOCK_BUFFER_SIZE NEEDS TO BE A POWER OF 2 (e.g. 8, 16, 32) because shifts and ors are used to do the ring-buffering.
1575 1575
 #if ENABLED(SDSUPPORT)
1576
-  #define BLOCK_BUFFER_SIZE 16 // SD,LCD,Buttons take more memory, block buffer needs to be smaller
1576
+  #define BLOCK_BUFFER_SIZE 32 // SD,LCD,Buttons take more memory, block buffer needs to be smaller
1577 1577
 #else
1578
-  #define BLOCK_BUFFER_SIZE 16 // maximize block buffer
1578
+  #define BLOCK_BUFFER_SIZE 32 // maximize block buffer
1579 1579
 #endif
1580 1580
 
1581 1581
 // @section serial
1582 1582
 
1583 1583
 // The ASCII buffer for serial input
1584 1584
 #define MAX_CMD_SIZE 96
1585
-#define BUFSIZE 4
1585
+#define BUFSIZE 32
1586 1586
 
1587 1587
 // Transmission to Host Buffer Size
1588 1588
 // To save 386 bytes of PROGMEM (and TX_BUFFER_SIZE+3 bytes of RAM) set to 0.
@@ -1591,7 +1591,7 @@
1591 1591
 // For debug-echo: 128 bytes for the optimal speed.
1592 1592
 // Other output doesn't need to be that speedy.
1593 1593
 // :[0, 2, 4, 8, 16, 32, 64, 128, 256]
1594
-#define TX_BUFFER_SIZE 0
1594
+#define TX_BUFFER_SIZE 32
1595 1595
 
1596 1596
 // Host Receive Buffer Size
1597 1597
 // Without XON/XOFF flow control (see SERIAL_XON_XOFF below) 32 bytes should be enough.
@@ -2090,7 +2090,7 @@
2090 2090
    * STEALTHCHOP_(XY|Z|E) must be enabled to use HYBRID_THRESHOLD.
2091 2091
    * M913 X/Y/Z/E to live tune the setting
2092 2092
    */
2093
-  //#define HYBRID_THRESHOLD
2093
+  #define HYBRID_THRESHOLD
2094 2094
 
2095 2095
   #define X_HYBRID_THRESHOLD     100  // [mm/s]
2096 2096
   #define X2_HYBRID_THRESHOLD    100

Loading…
Cancel
Save