Browse Source

Sync SKR E3 configs (#16301)

thisiskeithb 4 years ago
parent
commit
9c021158e5

+ 8
- 5
config/examples/BigTreeTech/SKR Mini E3 1.0/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,9 @@
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
530 533
 #endif // PIDTEMPBED
531 534
 
532 535
 // @section extruder
@@ -1199,7 +1202,7 @@
1199 1202
 #if EITHER(AUTO_BED_LEVELING_LINEAR, AUTO_BED_LEVELING_BILINEAR)
1200 1203
 
1201 1204
   // Set the number of grid points per dimension.
1202
-  #define GRID_MAX_POINTS_X 3
1205
+  #define GRID_MAX_POINTS_X 5
1203 1206
   #define GRID_MAX_POINTS_Y GRID_MAX_POINTS_X
1204 1207
 
1205 1208
   // Probe along the Y axis, advancing X after each column

+ 5
- 5
config/examples/BigTreeTech/SKR Mini E3 1.0/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.

Loading…
Cancel
Save