Skip to content

Commit 17b02a2

Browse files
committed
current config
1 parent cf4631c commit 17b02a2

File tree

2 files changed

+13
-6
lines changed

2 files changed

+13
-6
lines changed

Marlin/Configuration.h

+3-3
Original file line numberDiff line numberDiff line change
@@ -782,7 +782,7 @@
782782
* http://blog.kyneticcnc.com/2018/10/computing-junction-deviation-for-marlin.html
783783
*/
784784
//@ let's try
785-
#define JUNCTION_DEVIATION
785+
//#define JUNCTION_DEVIATION
786786
#if ENABLED(JUNCTION_DEVIATION)
787787
#define JUNCTION_DEVIATION_MM 0.025 // (mm) Distance from real junction edge
788788
#endif
@@ -936,7 +936,7 @@
936936
*
937937
* Specify a Probe position as { X, Y, Z }
938938
*/
939-
#define NOZZLE_TO_PROBE_OFFSET { 15, -46, 0 }
939+
#define NOZZLE_TO_PROBE_OFFSET { 14, -40, 0 }
940940

941941
// Certain types of probes need to stay away from edges
942942
#define MIN_PROBE_EDGE 5
@@ -1234,7 +1234,7 @@
12341234
#if EITHER(AUTO_BED_LEVELING_LINEAR, AUTO_BED_LEVELING_BILINEAR)
12351235

12361236
// Set the number of grid points per dimension.
1237-
#define GRID_MAX_POINTS_X 5
1237+
#define GRID_MAX_POINTS_X 4
12381238
#define GRID_MAX_POINTS_Y GRID_MAX_POINTS_X
12391239

12401240
// Probe along the Y axis, advancing X after each column

Marlin/src/pins/stm32/pins_MKS_ROBIN_NANO.h

+10-3
Original file line numberDiff line numberDiff line change
@@ -38,6 +38,13 @@
3838
//
3939
#define DISABLE_DEBUG
4040

41+
// Testing
42+
#define SDA_PIN PB7
43+
#define SCL_PIN PB6
44+
//#define I2C_EEPROM
45+
//#undef E2END
46+
//#define E2END 0x7FF // AT24C16N
47+
4148
//
4249
// Note: MKS Robin board is using SPI2 interface.
4350
//
@@ -51,9 +58,9 @@
5158
#define Z_MIN_PIN PA11
5259
//#define Z_MAX_PIN PC4
5360

54-
//#ifndef FIL_RUNOUT_PIN
55-
//#define FIL_RUNOUT_PIN PA4 // MT_DET
56-
//#endif
61+
#ifndef FIL_RUNOUT_PIN
62+
#define FIL_RUNOUT_PIN PA4 // MT_DET
63+
#endif
5764

5865
//
5966
// Steppers

0 commit comments

Comments
 (0)