Skip to content

Commit e49fa8c

Browse files
committed
Update Config
1 parent d97366d commit e49fa8c

File tree

7 files changed

+23
-23
lines changed

7 files changed

+23
-23
lines changed

Marlin/Configuration.h

+11-11
Original file line numberDiff line numberDiff line change
@@ -72,7 +72,7 @@
7272

7373
// Author info of this build printed to the host during boot and M115
7474
#define STRING_CONFIG_H_AUTHOR "(thisiskeithb, Ender-3)" // Who made the changes.
75-
#define CUSTOM_VERSION_FILE Version.h // Path from the root directory (no quotes)
75+
//#define CUSTOM_VERSION_FILE Version.h // Path from the root directory (no quotes)
7676

7777
/**
7878
* *** VENDORS PLEASE READ ***
@@ -707,7 +707,7 @@
707707
* Override with M92
708708
* X, Y, Z, E0 [, E1[, E2...]]
709709
*/
710-
#define DEFAULT_AXIS_STEPS_PER_UNIT { 80, 80, 400, 93 }
710+
#define DEFAULT_AXIS_STEPS_PER_UNIT { 80, 80, 400, 140.48}
711711

712712
/**
713713
* Default Max Feed Rate (mm/s)
@@ -803,7 +803,7 @@
803803
*
804804
* Enable this option for a probe connected to the Z Min endstop pin.
805805
*/
806-
#define Z_MIN_PROBE_USES_Z_MIN_ENDSTOP_PIN
806+
//#define Z_MIN_PROBE_USES_Z_MIN_ENDSTOP_PIN
807807

808808
/**
809809
* Z_MIN_PROBE_PIN
@@ -835,7 +835,7 @@
835835
* Use G29 repeatedly, adjusting the Z height at each point with movement commands
836836
* or (with LCD_BED_LEVELING) the LCD controller.
837837
*/
838-
#define PROBE_MANUALLY
838+
//#define PROBE_MANUALLY
839839
//#define MANUAL_PROBE_START_Z 0.2
840840

841841
/**
@@ -853,7 +853,7 @@
853853
/**
854854
* The BLTouch probe uses a Hall effect sensor and emulates a servo.
855855
*/
856-
//#define BLTOUCH
856+
#define BLTOUCH
857857

858858
/**
859859
* Touch-MI Probe by hotends.fr
@@ -910,10 +910,10 @@
910910
*
911911
* Specify a Probe position as { X, Y, Z }
912912
*/
913-
#define NOZZLE_TO_PROBE_OFFSET { 10, 10, 0 }
913+
#define NOZZLE_TO_PROBE_OFFSET { -46.5, -7, -3.400 }
914914

915915
// Certain types of probes need to stay away from edges
916-
#define MIN_PROBE_EDGE 10
916+
#define MIN_PROBE_EDGE 20
917917

918918
// X and Y axis travel speed (mm/m) between probes
919919
#define XY_PROBE_SPEED 8000
@@ -1153,9 +1153,9 @@
11531153
*/
11541154
//#define AUTO_BED_LEVELING_3POINT
11551155
//#define AUTO_BED_LEVELING_LINEAR
1156-
//#define AUTO_BED_LEVELING_BILINEAR
1156+
#define AUTO_BED_LEVELING_BILINEAR
11571157
//#define AUTO_BED_LEVELING_UBL
1158-
#define MESH_BED_LEVELING
1158+
//#define MESH_BED_LEVELING
11591159

11601160
/**
11611161
* Normally G28 leaves leveling disabled on completion. Enable
@@ -1209,7 +1209,7 @@
12091209

12101210
// Beyond the probed grid, continue the implied tilt?
12111211
// Default is to maintain the height of the nearest edge.
1212-
#define EXTRAPOLATE_BEYOND_GRID
1212+
//#define EXTRAPOLATE_BEYOND_GRID
12131213

12141214
//
12151215
// Experimental Subdivision of the grid by Catmull-Rom method.
@@ -1432,7 +1432,7 @@
14321432

14331433
#define PREHEAT_2_LABEL "PETG"
14341434
#define PREHEAT_2_TEMP_HOTEND 230
1435-
#define PREHEAT_2_TEMP_BED 80
1435+
#define PREHEAT_2_TEMP_BED 80
14361436
#define PREHEAT_2_FAN_SPEED 255 // Value from 0 to 255
14371437

14381438
/**

Marlin/Configuration_adv.h

+8-8
Original file line numberDiff line numberDiff line change
@@ -916,7 +916,7 @@
916916
#if HAS_LCD_MENU
917917

918918
// Include a page of printer information in the LCD Main Menu
919-
#define LCD_INFO_MENU
919+
//#define LCD_INFO_MENU
920920
#if ENABLED(LCD_INFO_MENU)
921921
//#define LCD_PRINTER_INFO_IS_BOOTSCREEN // Show bootscreen(s) instead of Printer Info pages
922922
#endif
@@ -1053,9 +1053,9 @@
10531053
#define SDSORT_LIMIT 40 // Maximum number of sorted items (10-256). Costs 27 bytes each.
10541054
#define FOLDER_SORTING -1 // -1=above 0=none 1=below
10551055
#define SDSORT_GCODE false // Allow turning sorting on/off with LCD and M34 g-code.
1056-
#define SDSORT_USES_RAM true // Pre-allocate a static array for faster pre-sorting.
1056+
#define SDSORT_USES_RAM true // Pre-allocate a static array for faster pre-sorting.
10571057
#define SDSORT_USES_STACK false // Prefer the stack for pre-sorting to give back some SRAM. (Negated by next 2 options.)
1058-
#define SDSORT_CACHE_NAMES true // Keep sorted items in RAM longer for speedy performance. Most expensive option.
1058+
#define SDSORT_CACHE_NAMES true // Keep sorted items in RAM longer for speedy performance. Most expensive option.
10591059
#define SDSORT_DYNAMIC_RAM false // Use dynamic allocation (within SD menus). Least expensive option. Set SDSORT_LIMIT before use!
10601060
#define SDSORT_CACHE_VFATS 2 // Maximum number of 13-byte VFAT entries to use for sorting.
10611061
// Note: Only affects SCROLL_LONG_FILENAMES with SDSORT_CACHE_NAMES but not SDSORT_DYNAMIC_RAM.
@@ -1150,7 +1150,7 @@
11501150
*
11511151
* :[ 'LCD', 'ONBOARD', 'CUSTOM_CABLE' ]
11521152
*/
1153-
//#define SDCARD_CONNECTION LCD
1153+
#define SDCARD_CONNECTION ONBOARD
11541154
#endif
11551155

11561156
#endif // SDSUPPORT
@@ -1387,10 +1387,10 @@
13871387

13881388
//#define BABYSTEP_DISPLAY_TOTAL // Display total babysteps since last G28
13891389

1390-
//#define BABYSTEP_ZPROBE_OFFSET // Combine M851 Z and Babystepping
1390+
#define BABYSTEP_ZPROBE_OFFSET // Combine M851 Z and Babystepping
13911391
#if ENABLED(BABYSTEP_ZPROBE_OFFSET)
13921392
//#define BABYSTEP_HOTEND_Z_OFFSET // For multiple hotends, babystep relative Z offsets
1393-
//#define BABYSTEP_ZPROBE_GFX_OVERLAY // Enable graphical overlay on Z-offset editor
1393+
#define BABYSTEP_ZPROBE_GFX_OVERLAY // Enable graphical overlay on Z-offset editor
13941394
#endif
13951395
#endif
13961396

@@ -1575,14 +1575,14 @@
15751575
#if ENABLED(SDSUPPORT)
15761576
#define BLOCK_BUFFER_SIZE 32 // SD,LCD,Buttons take more memory, block buffer needs to be smaller
15771577
#else
1578-
#define BLOCK_BUFFER_SIZE 16 // maximize block buffer
1578+
#define BLOCK_BUFFER_SIZE 32 // maximize block buffer
15791579
#endif
15801580

15811581
// @section serial
15821582

15831583
// The ASCII buffer for serial input
15841584
#define MAX_CMD_SIZE 96
1585-
#define BUFSIZE 4
1585+
#define BUFSIZE 32
15861586

15871587
// Transmission to Host Buffer Size
15881588
// To save 386 bytes of PROGMEM (and TX_BUFFER_SIZE+3 bytes of RAM) set to 0.
-208 KB
Binary file not shown.
-201 KB
Binary file not shown.

config/examples/BigTreeTech/SKR Mini E3 1.2 BLTouch/Configuration.h

+2-2
Original file line numberDiff line numberDiff line change
@@ -72,7 +72,7 @@
7272

7373
// Author info of this build printed to the host during boot and M115
7474
#define STRING_CONFIG_H_AUTHOR "(thisiskeithb, Ender-3)" // Who made the changes.
75-
#define CUSTOM_VERSION_FILE Version.h // Path from the root directory (no quotes)
75+
//#define CUSTOM_VERSION_FILE Version.h // Path from the root directory (no quotes)
7676

7777
/**
7878
* *** VENDORS PLEASE READ ***
@@ -707,7 +707,7 @@
707707
* Override with M92
708708
* X, Y, Z, E0 [, E1[, E2...]]
709709
*/
710-
#define DEFAULT_AXIS_STEPS_PER_UNIT { 80, 80, 400, 93 }
710+
#define DEFAULT_AXIS_STEPS_PER_UNIT { 80, 80, 400, 140.48}
711711

712712
/**
713713
* Default Max Feed Rate (mm/s)

config/examples/BigTreeTech/SKR Mini E3 1.2/Configuration.h

+1-1
Original file line numberDiff line numberDiff line change
@@ -72,7 +72,7 @@
7272

7373
// Author info of this build printed to the host during boot and M115
7474
#define STRING_CONFIG_H_AUTHOR "(thisiskeithb, Ender-3)" // Who made the changes.
75-
#define CUSTOM_VERSION_FILE Version.h // Path from the root directory (no quotes)
75+
//#define CUSTOM_VERSION_FILE Version.h // Path from the root directory (no quotes)
7676

7777
/**
7878
* *** VENDORS PLEASE READ ***

platformio.ini

+1-1
Original file line numberDiff line numberDiff line change
@@ -709,4 +709,4 @@ board = megaatmega2560
709709
build_flags = -c -H -std=gnu++11 -Wall -Os -D__MARLIN_FIRMWARE__
710710
lib_deps = ${common.lib_deps}
711711
TMC26XStepper=https://github.com/trinamic/TMC26XStepper/archive/master.zip
712-
src_filter = +<src/Marlin.cpp>
712+
src_filter = +<src/Marlin.cpp>

0 commit comments

Comments
 (0)